如何连接(GET请求)ios app到django rest框架

时间:2014-08-13 19:35:37

标签: ios django xcode django-rest-framework

我进入了应用程序开发的最后阶段,这是我以前从未做过的事情。 我的朋友使用django rest框架为我的应用程序开发和API发送和接收数据。 我需要对我的应用进行身份验证以连接到它,发送一些数据并接收数据。

到目前为止我发现的是:

NSURL *url = [NSURL URLWithString:@"http://localhost:8080/my/path/to/api/login/"];
    NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];
    NSString *authStr = [NSString stringWithFormat:@"%@:%@", @"myUsername", @"myPassword"];
    NSData *authData = [authStr dataUsingEncoding:NSASCIIStringEncoding];
    NSString *authValue = [NSString stringWithFormat:@"Basic %@", authData];
    [request setValue:authValue forHTTPHeaderField:@"Authorization"];
    [request setHTTPMethod:@"GET"];
    [request setValue:@"application/json" forHTTPHeaderField:@"Accept"];

// --------------------------------------------- -------------------------------------------------- ------------------------------------- //

    //EDIT: Added this based on answer form @Quver.
    NSURLResponse *response1;
    NSError *responseError;

NSData *result = [NSURLConnection sendSynchronousRequest:request returningResponse:&response1 error:&responseError];

if (result.length > 0 && responseError == nil)
{
    NSDictionary *greeting = [NSJSONSerialization JSONObjectWithData:result
                                                             options:0
                                                               error:NULL];
    NSLog(@"Got response form server: %@", greeting);

}

这等于输出: < 0aaa3c68 746d6c3e 0a0a2020 20203c68 6561643e 0a202020 20202020 200a2020 20202020 20200a20 20202020 +〜50行类似的东西。希望这会有所帮助。

// --------------------------------------------- -------------------------------------------------- ------------------------------------------ //

我想这是创建请求的方法。接下来我该怎么办?我怎么知道我已经连接了? 然后,如果我已连接,我如何从那里获取数据? (我有一个网址,给我json作为输出 - 这是我想要的)。假设网址为http://localhost:8080/url/that/gives/json/

感谢您的帮助。希望这是足够的信息。我将添加任何其他所需的内容。

2 个答案:

答案 0 :(得分:1)

NSURLResponse *response;
NSError *responseError;

NSData *result = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&responseError];

添加此内容以获取回复。您已准备好请求,现在是时候用NSURLConnection发送它了。我同步了async的请求,因为使用GCD进行整个metod请求+ sqlite更新。

答案 1 :(得分:0)

经过几天的搜索,我找到了一条路。 首先,我们需要一个令牌进行身份验证。我现在通过终端生成它:

curl -X POST -d "grant_type=password&username=<your username>&password=<your password>" http://<client secret>:<client id>@url/to/token/page

然后,在您要连接的视图控制器中:

//always put </> at the end of link
    NSURL *aUrl = [NSURL URLWithString: @"http://where/you/trying/to/conect"];
    NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:aUrl
                                                           cachePolicy:NSURLRequestUseProtocolCachePolicy
                                                       timeoutInterval:30.0];

    [request addValue:[NSString stringWithFormat:@"<type> <your token>"] forHTTPHeaderField:@"Authorization"];

    [request setHTTPMethod:@"GET"];

    NSError *error = nil;
    self.response = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error: &error];

这将返回页面应该返回的任何json。这可能不是最安全的方式,但这正是我现在所需要的。我将在后面讨论OAuth 2等更安全的解决方案。

希望这对某人有帮助。