ios - 从 twitter 获取用户的名字和姓氏
<p><p>我是 iPhone 开发的新手。我正在使用 Fabric 进行 Twitter 登录。为此我正在使用此代码。</p>
<pre><code>[ logInWithCompletion:^(TWTRSession* session, NSError* error) {
if (session)
{
NSLog(@"signed in as %@", );
}
else
{
NSLog(@"error: %@", );
}
}];
</code></pre>
<p>现在,我想从 twitter 获取用户的名字和姓氏。我已经对此进行了研发并找到了一些代码 <a href="https://stackoverflow.com/questions/30235010/get-user-profile-details-especially-email-address-from-twitter-in-ios" rel="noreferrer noopener nofollow">Get user profile details (especially email address) from twitter in iOS</a>
但我不是无法理解这段代码。因为它在我的代码中给出了一些错误。
错误是</p>
<pre><code>Error: Error Domain=TwitterAPIErrorDomain Code=99 "Request failed: forbidden (403)" UserInfo={NSErrorFailingURLKey=https://api.twitter.com/oauth2/token, NSLocalizedDescription=Request failed: forbidden (403), NSLocalizedFailureReason=Twitter API error : Unable to verify your credentials (code 99)}
</code></pre></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>回答这个问题可能为时已晚,但这可能会有所帮助。假设您已经在 iOS 应用程序中安装了 Twitter SDK。你可以像这样获取 Twitter 用户的信息:</p>
<p><strong>1.</strong> 用推特登录:</p>
<blockquote>
<p>Twitter.sharedInstance().logIn(completion: { (session, error) in }</p>
</blockquote>
<p><strong>2.</strong> 使用 TWTRAPIClient 检索用户数据:</p>
<pre><code>Twitter.sharedInstance().logIn(completion: { (session, error) in
guard let session = session else {
print("Something went wrong.")
return
}
let client = TWTRAPIClient()
client.loadUser(withID: session.userID, completion: { (user, error) in
print("user's name: \(user?.name ?? "")")
print("user's profile picture: \(user?.profileImageURL ?? "")")
})
}
</code></pre></p>
<p style="font-size: 20px;">关于ios - 从 twitter 获取用户的名字和姓氏,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/36540540/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/36540540/
</a>
</p>
页:
[1]