OAuth + Twitter on Android: Callback fails

前端 未结 4 1841
-上瘾入骨i
-上瘾入骨i 2020-12-08 12:10

My Android application uses Java OAuth library, found here for authorization on Twitter. I am able to get a request token, authorize the token and get an acknowlegement but

4条回答
  •  借酒劲吻你
    2020-12-08 13:07

    In my case, i have this working:

     String authURL = m_provider.retrieveRequestToken (m_consumer, CALLBACK_URL);
    

    And in the Manifest:

         
            
                
                
                
                
            
    

    In this case the callback url will be: myapp://tweet

提交回复
热议问题