gpt4 book ai didi

ios - 如何使用适用于 iPad 的苹果 IOS 设置 Basecamp 凭据

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:34:45 24 4
gpt4 key购买 nike

我正在尝试为我们正在构建的内部项目请求我公司的 Basecamp 信息。我了解如何在 ASP.NET 环境中添加凭据,但我是 iPad 开发的新手,似乎无法从 Basecamp 获得适当的响应。这是我正在做的:

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

我正在添加 Bsaecamp 需要的 HTTP header ,如下所示:

[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);
}

希望这对其他人有帮助。

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

张杰

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

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com