如何将基本身份验证与 RestKit 的 getObject 结合使用?

发布于 2024-12-04 19:56:03 字数 477 浏览 0 评论 0原文

我尝试了以下方法来设置基本身份验证用户名和密码,但它似乎没有在请求中传递基本身份验证。

secureManager = [[RKObjectManager objectManagerWithBaseURL:@"http://localhost:3000"] retain];

secureManager.client.username = uname;
secureManager.client.password = pwd;


RKObjectLoader *loader = [svc getObject:user delegate:self];

loader.userData = [NSNumber numberWithInt:RequestLogin];

更新:发现我的问题,我需要添加以下代码片段

secureManager.client.forceBasicAuthentication = YES;

I tried the following to set the basic auth username and password, but it does not seem to be passing the basic auth in the request..

secureManager = [[RKObjectManager objectManagerWithBaseURL:@"http://localhost:3000"] retain];

secureManager.client.username = uname;
secureManager.client.password = pwd;


RKObjectLoader *loader = [svc getObject:user delegate:self];

loader.userData = [NSNumber numberWithInt:RequestLogin];

UPDATE: found my problem, I needed to add the following snippet

secureManager.client.forceBasicAuthentication = YES;

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一梦等七年七年为一梦 2024-12-11 19:56:03

您可以在发出请求之前获取底层 RKClient 的实例并设置用户名和密码,如下所示:

// Set the Username and Password
[RKObjectManager sharedManager].client.username = @"username"; 
[RKObjectManager sharedManager].client.password = @"letmein";

// Make our Request
[[RKObjectManager sharedManager] getObject:user mapResponseWith:mapping delegate:self];

正如 MonkeyBonkey 在评论中指出的那样,您可能需要使用标志强制进行身份验证:

[RKObjectManager sharedManager].client.forceBasicAuthentication = YES;

You can grab an instance of the underlying RKClient before you make your request and set the Username and Password like so:

// Set the Username and Password
[RKObjectManager sharedManager].client.username = @"username"; 
[RKObjectManager sharedManager].client.password = @"letmein";

// Make our Request
[[RKObjectManager sharedManager] getObject:user mapResponseWith:mapping delegate:self];

As MonkeyBonkey points out in the comments, you may need to force the authentication using a flag:

[RKObjectManager sharedManager].client.forceBasicAuthentication = YES;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文