Skip to main content

Posts

Showing posts with the label scribe

post status on facebook using scribe on android [closed]

I'm success to use scribe to tweet and retweet using scribe via my android appilcation using this code. Now, I want to post facebook status using this scribe, there is an example using scribe to access facebook from here . But I'm still confuse where I must place my string, that contain my status on program? And what is the url to post this status? If on twitter, I can put my string on this url: String tweet = URLEncoder.encode(message); String urlTweet = "http://api.twitter.com/1/statuses/update.json?status="+tweet; please somebody help me, I'm getting stuck in here. regard ahmal final OAuthService service = new ServiceBuilder() .provider(TwitterApi.class) .apiKey(consumerKey) .apiSecret(consumerSecret) .callback(callBack) .build(); final Token requestToken = service.getRequestToken(); final String authURL = service.getAuthorizationUrl(requestToken); final WebView webview = new WebView(this); webview.setWebViewClient(new Web