菜鸟教程小白 发表于 2022-12-12 13:47:16

ios - 使用 TwitterKit 访问 twitter 流 api


                                            <p><p>我正在使用 twitter 的 Fabric 平台向 twitter 发布推​​文。在fabric中有管理身份验证和其他东西的TwitterKit框架。现在我需要访问 twitter 流 api。如何将 twitter 已经建立的身份验证信息与流 api 一起使用。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>使用 <code>NSURLConnection</code>。</p>

<pre> func connectUserStream() {
      让 twtrRequest = Twitter.sharedInstance().APIClient.URLRequestWithMethod("GET", URL: "https://userstream.twitter.com/1.1/statuses/sample.json", 参数: nil, 错误: nil)
      让 urlConnection = NSURLConnection(请求:twtrRequest,委托(delegate): self )
      urlConnection?.start()
    }

   //标记:NSURLConnectionDelegate
    func 连接(连接:NSURLConnection,didReceiveData 数据:NSData){
      让响应:String = NSString(数据:数据,编码:NSUTF8StringEncoding)!
      打印(响应)
    }
</pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 使用 TwitterKit 访问 twitter 流 api,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/28024486/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/28024486/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 使用 TwitterKit 访问 twitter 流 api