0

我想使用我需要的 restKit api 从 iOS 的 Web 服务获取信息(json)。我的 Web 服务具有基本身份验证

在此处输入图像描述

我尝试使用以下代码登录:

RKURL *baseURL = [RKURL URLWithBaseURLString:@"http://mysite.com"]; 
RKClient *client= [RKClient sharedClient]; 
    client.username = @"user"; 
    client.password = @"passw"; 
    client.authenticationType = RKRequestAuthenticationTypeHTTPBasic;

RKRequest * therequest = [client requestWithResourcePath:@"/authentication"]; 
    [therequest setMethod:RKRequestMethodPOST];                                       
    [therequest setDelegate:self];                               
    [therequest send]; 

但我无法得到它。

请......你能给我一个关于restKit的基本身份验证的例子吗?

此致!

4

2 回答 2

0

首先感谢您的正确答案,您能否向我们展示一下网络服务的外观。因为我自己做,但不能真正使用你的代码这是我的网络服务

 

$UserName = $_GET['u'];
    $Password = $_GET['p'];

    include("Ldap.php");

    $ldap = new Ldap();

    if($ldap->authenticate($UserName, $Password))
 {
        $json = array('status'=>'OK');
    }
    else
    {
        $json = array('status'=>'ERROR');
    }
于 2013-01-06T05:34:18.080 回答
0

我用以下代码解决了这个问题:

 RKURL *baseURL = [RKURL URLWithBaseURLString:@"http://api.mysite.com"];
    RKObjectManager *objectManager = [RKObjectManager objectManagerWithBaseURL:baseURL];
    objectManager.client.baseURL = baseURL;    
    objectManager.client.username = @"user";
    objectManager.client.password = @"passw";

    objectManager.serializationMIMEType = RKMIMETypeXML;


    RKURL *URL = [RKURL URLWithBaseURL:[objectManager baseURL] resourcePath:@"/authentication"];

    NSLog(@"URL: %@", [URL absoluteString]);
    NSLog(@"resourcePath: %@", [URL resourcePath]);
    NSLog(@"query: %@", [URL query]);

    [objectManager loadObjectsAtResourcePath:[NSString stringWithFormat:@"%@?%@", [URL resourcePath], [URL query]] delegate:self];

我等着回答会帮助别人

于 2012-12-10T22:34:34.847 回答