如何获取推特的用户访问令牌?

How to get twitter's user Access Token?

我正在使用https://twitteroauth.com/ in my some PHP pages. I want to get user access token and access secret token. I got my answer on this page:

在两个页面上替换我的消费者密钥和秘密消费者密钥之后。我将它上传到我的服务器上,但是当我打开 twitter 时出现以下错误-go.php

Fatal error: Uncaught exception `'Abraham\TwitterOAuth\TwitterOAuthException'` with message 

'<?xml version="1.0" encoding="UTF-8"?>
<hash> 
    <error>Desktop applications only support the oauth_callback value 'oob'</error>
    <request>/oauth/request_token</request>
</hash> '
in `/home/mediahyp/public_html/tweetme/twitteroauth/src/TwitterOAuth.php:138` 

Stack trace: 

#0 /home/mediahyp/public_html/tweetme/twitter-go.php(13): Abraham\TwitterOAuth\TwitterOAuth->oauth('oauth/request_t...', Array) 
#1 {main} thrown in /home/mediahyp/public_html/tweetme/twitteroauth/src/TwitterOAuth.php on line 138

谁能告诉我这个错误是怎么回事?我是漏掉了什么还是别的什么。

https://twittercommunity.com/t/desktop-applications-only-support-the-oauth-callback-value-oob-oauth-request-token/252/2

The new interface simplifies this: if you provide a placeholder callback URL in the field for it in your application detail screen, it allows you to use dynamic callbacks. So just go ahead and put a placeholder in there (doesn't have to be the actual dynamic/runtime callback you use) and you'll be able to use other forms of auth.

When no placeholder is presented, the application is locked to OOB mode.