现在我注册了twitter,并且也创建了应用,信息如下:
Consumer key: VMuxvF16xxxxg1LsIYg
Consumer secret: ZlJMxxxxxTWhcGaHGcAU2pxolLWCLeWaE
Request token URL: https://api.twitter.com/oauth/request_token
Authorize URL: https://api.twitter.com/oauth/authorize
Access token URL: https://api.twitter.com/oauth/access_token
Callback URL: http://50.0.0.25:11100/a/HTML/others.br?a=1
Access token: 378498185-ilxxxxxxxxwNdailFgKLtHccuTb6ZSwbxgUB
Access token secret: X6P1BsSQ9grM4BzxxxxxxxxEuzTVCx5ipjD01p
请问我怎么在我的应用上加入twitter的登录操作和加载好友动态信息?
------解决方案--------------------
解决了?
------解决方案--------------------
github 上有个项目 git://github.com/fernandezpablo85/scribe-java.git 方便 OAuth使用。
- Java code
package org.scribe.examples;import java.util.Scanner;import org.scribe.builder.*;import org.scribe.builder.api.*;import org.scribe.model.*;import org.scribe.oauth.*;public class TwitterExample{ private static final String PROTECTED_RESOURCE_URL = "http://api.twitter.com/1/account/verify_credentials.xml"; public static void main(String[] args) { OAuthService service = new ServiceBuilder() .provider(TwitterApi.class) .apiKey("6icbcAXyZx67r8uTAUM5Qw") .apiSecret("SCCAdUUc6LXxiazxH3N0QfpNUvlUy84mZ2XZKiv39s") .build(); Scanner in = new Scanner(System.in); System.out.println("=== Twitter's OAuth Workflow ==="); System.out.println(); // Obtain the Request Token System.out.println("Fetching the Request Token..."); Token requestToken = service.getRequestToken(); System.out.println("Got the Request Token!"); System.out.println(); System.out.println("Now go and authorize Scribe here:"); System.out.println(service.getAuthorizationUrl(requestToken)); System.out.println("And paste the verifier here"); System.out.print(">>"); Verifier verifier = new Verifier(in.nextLine()); System.out.println(); // Trade the Request Token and Verfier for the Access Token System.out.println("Trading the Request Token for an Access Token..."); Token accessToken = service.getAccessToken(requestToken, verifier); System.out.println("Got the Access Token!"); System.out.println("(if your curious it looks like this: " + accessToken + " )"); System.out.println(); // Now let's go and ask for a protected resource! System.out.println("Now we're going to access a protected resource..."); OAuthRequest request = new OAuthRequest(Verb.GET, PROTECTED_RESOURCE_URL); service.signRequest(accessToken, request); Response response = request.send(); System.out.println("Got it! Lets see what we found..."); System.out.println(); System.out.println(response.getBody()); System.out.println(); System.out.println("Thats it man! Go and build something awesome with Scribe! :)"); }}