twitter in android
I need a call back URL fo开发者_C百科r registration of my app in twitter. How to get it??
It can be kept blank also. You can override it any other time when you will be connecting to twitter from your code.
Let me google that for you... http://dev.twitter.com/pages/auth
The callback url that you enter in the twitter developers site wont be used in your actual app. In your android manifest, you should have this code of line in an intent-filter;
<data android:scheme="destroy" android:host="destroytwitter" />
Then, in your OAuth activity, your callback URL will be "scheme://host", in this example "destroy://destroytwitter". You can put anything in scheme and host.
NB: Yep, thats a leak of my upcoming app(an android version of DT).
精彩评论