ios - 在 iOS 中使用 SSL 连接到 twitter API
<p><p>我正在尝试使用 iOS SDK 中的 Twitter API 获取用户的 Twitter 时间线,但出现错误提示:</p>
<p><code>代码 = 92; message = "需要 SSL";</code></p>
<p>我用谷歌搜索了错误,发现 <a href="https://dev.twitter.com/docs/security/using-ssl" rel="noreferrer noopener nofollow">this page</a>在 Twitter API 网站上,但我不知道如何在 iOS 中使用它。</p>
<p>这是我的代码:</p>
<pre><code>ACAccountStore *account = [ init];
ACAccountType *accountType = ;
[account requestAccessToAccountsWithType:accountType options:nil completion:^(BOOL granted, NSError *error)
{
if (granted == YES){
NSArray *arrayOfAccounts = ;
if ( > 0) {
ACAccount *twitterAccount = ;
NSURL *requestAPI = ;
NSMutableDictionary *parameters = [ init];
;
;
SLRequest *posts = ;
posts.account = twitterAccount;
[posts performRequestWithHandler:
^(NSData *response, NSHTTPURLResponse
*urlResponse, NSError *error)
{
// The NSJSONSerialization class is then used to parse the data returned and assign it to our array.
array = ;
if (array.count != 0) {
dispatch_async(dispatch_get_main_queue(), ^{
NSLog(@"%@",array);
});
}
}];
}
} else {
// Handle failure to get account access
NSLog(@"%@", );
}
}];
</code></pre>
<p>有没有办法解决这个问题?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>在您的网址中使用“https”:</p>
<pre><code>https://api.twitter.com/1.1/statuses/user_timeline.json
</code></pre>
<p>文档:<a href="https://dev.twitter.com/docs/api/1.1/get/statuses/user_timeline" rel="noreferrer noopener nofollow">https://dev.twitter.com/docs/api/1.1/get/statuses/user_timeline</a> </p></p>
<p style="font-size: 20px;">关于ios - 在 iOS 中使用 SSL 连接到 twitter API,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/22303771/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/22303771/
</a>
</p>
页:
[1]