如何在本地主机上检查我的 Twitter 应用程序?
我想检查从表单发布推文的示例,因此我创建了一个应用程序。但是,当我注册应用程序并将回调 URL 输入为 http://localhost/mytwitterexample 时,在本地服务器上进行测试它没有将其视为有效的 URL。
我该如何消除这种歧义?我还在寻找更多有关使用 twiiter api 的示例,因此如果您有任何博客或网站可以关注,请告诉我。
I want to check an example of posting a tweet from a form so I created an app. But for testing on my local server when I'm registering the app and entering the CALLBACK URL as http://localhost/mytwitterexample its not taking it as a valid URL.
How do I remove this ambiguity? I am also looking for some more examples on using twiiter apis, so if you have any blogs or websites to follow let me know.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 dev.twitter.com 上的申请记录上放置一个占位符回调 URL - 将其指向您的个人网站或其他网站。
实际执行 OAuth 序列时,请始终在请求令牌步骤上显式声明您的 oauth_callback URL。虽然您的官方应用程序记录不能将您的回调标记为 localhost,但您可以在提供回调时使用您喜欢的任何类型的有效 URI 方案,包括将其指向 localhost。
Put a placeholder callback URL on your application record on dev.twitter.com -- point it at your personal website or otherwise.
When actually performing the OAuth sequence, always explicitly declare your oauth_callback URL on the request token step. While your official application record can't have your callback labeled as localhost, you can use any kind of valid URI scheme you like when providing the callback, including pointing it at localhost.