gpt4 book ai didi

iphone - 可读性 API 和 RestKit - 响应状态代码 500

转载 作者:行者123 更新时间:2023-11-29 13:30:40 28 4
gpt4 key购买 nike

您好,我正在尝试实现 Readability API在我的应用程序中,但我得到的只是状态代码 500 - “未知问题”。我的响应正文是一个 html 页面,上面写着“页面不可用”。

我正在使用 RestKit。

这是我尝试连接的方式:

-(void)sendRequests
{
NSDictionary *params = [NSDictionary dictionaryWithObjectsAndKeys:
@"myconsumerkey", @"oauth_consumer_key",
[NSString stringWithFormat:@"%f", [[NSDate date] timeIntervalSince1970]], @"oauth_timestamp",
[self uuid], @"oauth_nonce",
@"HMAC-SHA1", @"oauth_signature_method",
@"mysecretkey", @"oauth_consumer_secret",
@"1.0",@"oauth_version",
@"username", @"x_auth_username",
@"password", @"x_auth_password",
@"client_auth", @"x_auth_mode", nil];
RKClient *client = [RKClient clientWithBaseURL:[NSURL URLWithString:@"https://www.readability.com/api/rest/v1"]];

[client post:@"/oauth/access_token" params:params delegate:self];
}

非常感谢!

最佳答案

您应该使用带有 RestKit 的 GCOAuth 包之一来帮助简化您的操作。这是一个 example they give for doing xauth with GCOAuth :

NSURLRequest *xauth = [GCOAuth URLRequestForPath:@"/oauth/access_token"
POSTParameters:[NSDictionary dictionaryWithObjectsAndKeys:
username, @"x_auth_username",
password, @"x_auth_password",
@"client_auth", @"x_auth_mode",
nil]
host:@"api.twitter.com"
consumerKey:CONSUMER_KEY
consumerSecret:CONSUMER_SECRET
accessToken:nil
tokenSecret:nil];

关于iphone - 可读性 API 和 RestKit - 响应状态代码 500,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11986589/

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