菜鸟教程小白 发表于 2022-12-13 15:48:34

ios - 使用 TwitterKit iOS guest 身份验证获取用户时间线时出现错误代码 403


                                            <p><p>我正在使用 Fabric 的 twitter 工具包,通过向 REST API 端点“<a href="https://api.twitter.com/1.1/statuses/user_timeline.json" rel="noreferrer noopener nofollow">https://api.twitter.com/1.1/statuses/user_timeline.json</a>”发出请求,在我的 iOS 应用程序中获取用户名的推文</p>

<p>我已经正确设置了我的 AppDelegate 和 info.plist 中 Fabric 应用程序提供的“消费者 key ”和“消费者 key ”,但我反复收到以下错误消息 -</p>

<blockquote>
<p>Error: Optional(Error Domain=TwitterAPIErrorDomain Code=200 &#34;Request
failed: forbidden (403)&#34;
UserInfo={NSErrorFailingURLKey=<a href="https://api.twitter.com/1.1/guest/activate.json" rel="noreferrer noopener nofollow">https://api.twitter.com/1.1/guest/activate.json</a>,
NSLocalizedDescription=Request failed: forbidden (403),
NSLocalizedFailureReason=Twitter API error : Forbidden. (code 200)})</p>
</blockquote>

<p>我的代码如下-</p>

<pre><code>      Twitter.sharedInstance().startWithConsumerKey(TWITTER_CONSUMER_KEY, consumerSecret: TWITTER_CONSUMER_KEY_SECRET)
      Fabric.with()

      let userId = Twitter.sharedInstance().sessionStore.session()?.userID
      let client = TWTRAPIClient.init(userID: userId)
      let params = [&#34;screen_name&#34;: twitterUsername, &#34;count&#34; : &#34;10&#34;]
      var clientError : NSError?

      let request = client.URLRequestWithMethod(&#34;GET&#34;, URL: TWITTER_TIMELINE_ENDPOINT, parameters: params, error: &amp;clientError)

      client.sendTwitterRequest(request) { (response, data, connectionError) -&gt; Void in
            if(connectionError == nil) {
                self.twitterJson = self.nsdataToJSON(data!)!
                self.constructTweetView(self.twitterJson)
            }
            else {
                print(&#34;Error: \(connectionError)&#34;)
            }
</code></pre>

<p>我使用的是最新版本的 TwitterKit(>2.0)</p>

<p>我该如何解决这个问题?</p>

<p>谢谢!</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>在 info.plist 中显示的异常域中添加 key 。为我修复了错误。</p>

<p> <a href="/image/PTiAV.png" rel="noreferrer noopener nofollow"><img src="/image/PTiAV.png" alt="enter image description here"/></a> </p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 使用 TwitterKit iOSguest 身份验证获取用户时间线时出现错误代码 403,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/36348516/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/36348516/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 使用 TwitterKit iOS guest 身份验证获取用户时间线时出现错误代码 403