我正在尝试为我们正在构建的内部项目索要公司的Basecamp信息。我知道如何在ASP.NET环境中添加凭据,但是我是iPad开发的新手,似乎无法从Basecamp获得适当的答复。这是我在做什么:

NSMutableURLRequest *theRequest=[NSMutableURLRequest requestWithURL:[NSURL URLWithString:@"http://mybasecampname.basecamphq.com/projects.xml"]
                                             cachePolicy:NSURLRequestUseProtocolCachePolicy
                                          timeoutInterval:60.0 ];

我正在添加Bsaecamp所需的HTTP标头,如下所示:
[theRequest setValue:@"application/xml" forHTTPHeaderField:@"Content-Type" ];
    [theRequest setValue:@"application/xml" forHTTPHeaderField:@"Accept" ];

我知道我还需要出于身份验证目的而发送我的凭据-我的身份验证 token 和我喜欢的任何密码,但是我不确定做到这一点的最佳方法。这是我正在尝试的:
NSURLCredential *credential = [NSURLCredential credentialWithUser:@"MY TOKEN HERE"
                                                             password:@"x"
                                                persistence:NSURLCredentialPersistenceForSession];

我的问题是:我是在这里吗?还是我完全错过了什么?

这是指向Basecamp API详细信息的链接,该链接解释了它的需求:http://developer.37signals.com/basecamp/

帮助表示赞赏。

最佳答案

像往常一样,我终于解决了。一旦我开始使用didReceiveAuthenticationChallenge方法,事情就会开始发生。

所以。我简化了我的请求方法:

- (void)startRequest
{
    NSURL *url = [NSURL URLWithString:@"http://mybasecampproject.basecamphq.com/projects.xml"];
    NSMutableURLRequest *urlRequest = [NSMutableURLRequest requestWithURL:url];

    // Start the connection request
    urlConnection = [[NSURLConnection alloc] initWithRequest:urlRequest delegate:self];

    }

然后设置一种接收身份验证质询的方法:
- (void)connection:(NSURLConnection *)connection
didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
{
    NSLog(@"Authentication challenge...");

    NSURLCredential *cred = [[[NSURLCredential alloc] initWithUser:@"my basecamp token here" password:@"X"
                                                           persistence:NSURLCredentialPersistenceForSession] autorelease];
        [[challenge sender] useCredential:cred forAuthenticationChallenge:challenge];

}

然后设置一个didReceiveData方法来捕获返回的数据:
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
{
    NSLog(@"Did receive data");

    NSString * strResult = [[NSString alloc] initWithData: data encoding:NSUTF8StringEncoding];
    NSLog(strResult);
}

希望这可以帮助其他人。

仍然很高兴听到更好的方法

J

关于ios - 如何使用Apple IOS for iPad设置Basecamp凭据,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3913269/

10-10 19:57