【Oauth认证】使用scribe实现OAUTH

     Scribe这边指的是Oauth库, 项目地址: https://github.com/fernandezpablo85/scribe-java , 而不是Facebook那个(https://github.com/facebook/scribe)。


       支持Oauth1.0a\Oauth2.0,个人感觉很不错。

      

       用法其实很简单,看官网就可以了。这边附上里面的新浪微博请求实例:


package com.yfz;

import java.util.*;

import org.scribe.builder.*;
import org.scribe.builder.api.*;
import org.scribe.model.*;
import org.scribe.oauth.*;

public class SinaWeiboExample
{
	private static final String NETWORK_NAME = "SinaWeibo";
	private static final String PROTECTED_RESOURCE_URL = "http://api.t.sina.com.cn/account/verify_credentials.json";
	private static final String API_KEY = "2178327133";
	private static final String API_SECRET = "67b0153c234c5423bcbba7078af6d127";
	
	public static void main(String[] args)
	{
		// Replace these with your own api key and secret
		String apiKey = "your key";
		String apiSecret = "your secret";
		OAuthService service = new ServiceBuilder()
				                        .provider(SinaWeiboApi.class)
				                        .apiKey(apiKey)
				                        .apiSecret(apiSecret)
				                        .build();
		Scanner in = new Scanner(System.in);

		System.out.println("=== " + NETWORK_NAME + "'s OAuth Workflow ===");
		System.out.println();

		// Grab a request token.
		System.out.println("Fetching request token.");
		Token requestToken = service.getRequestToken();
		System.out.println("Got it ... ");
		System.out.println(requestToken.getToken());

		// Obtain the Authorization URL
		System.out.println("Fetching the Authorization URL...");
		String authorizationUrl = service.getAuthorizationUrl(requestToken);
		System.out.println("Got the Authorization URL!");
		System.out.println("Now go and authorize Scribe here:");
		System.out.println(authorizationUrl);
		System.out.println("And paste the authorization code 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.getCode());
		System.out.println(response.getBody());

		System.out.println();
		System.out.println("Thats it man! Go and build something awesome with Scribe! :)");
		
	}
}

有什么不明白的,可以留言。

附上新浪微博Oauth实例,比较简陋,例子中会先进行认证、然后获取用户资料,最后可以发布新微薄。 (注意看日志!)

例子下载地址:   http://download.csdn.net/detail/feng88724/3671033

  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 3
    评论
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值