菜鸟教程小白 发表于 2022-12-12 16:01:25

ios - 使用 token 创建的 Twitter 帐户在 iOS7 上失败


                                            <p><p>我正在开发一个在 iOS6/7 上运行的应用程序,并在 Twitter 上发布自定义 View 。为了改善用户体验,如果没有可用的系统帐户,我会<strong>向用户提供一个 webView 以输入他们的凭据</strong>,按照 ACAccountCredential.h 中的建议将它们存储在 ACAccountStore 中并使用它来发布。</p>

<p>它在 iOS6 上运行良好,但 <strong>在 iOS7 上共享失败并出现 401 错误</strong>。奇怪的是该帐户在 ACAccountStore 中没有错误地保存,并且可以被 Twitter 应用程序用来在 Twitter 上阅读和发布(无需进一步登录),所以我假设该帐户( token 和 tokensecret )工作正常.</p>

<pre><code>SLRequest *postRequest = nil;
NSURL *url = ;
NSDictionary *content = @{@&#34;status&#34;:self.textToShare};
postRequest = [SLRequest requestForServiceType:SLServiceTypeTwitter
requestMethod:SLRequestMethodPOST
URL:url
parameters:content];

;
;
</code></pre>

<p>我也尝试过使用 API v1.1,但它似乎没有帮助。有什么想法吗?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>通过将 URL 更改为使用 HTTPS 并使用 API v1.1,它适用于 iOS6 和 iOS7。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 使用 token 创建的 Twitter 帐户在 iOS7 上失败,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/19655777/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/19655777/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 使用 token 创建的 Twitter 帐户在 iOS7 上失败