[转] Android进阶——安卓接入微信,获取OpenID

时间:2022-01-19 15:58:41

PS: sendAuthRequest拿到code,通过code拿到access_token和openId,access_token可以拿到用户的信息

http://blog.csdn.net/haovip123/article/details/50503176

需求:接入微信支付,需要获取 OpenID。

微信开放平台上面对大多数步骤都有详细的介绍。但是……,还是自己梳理一下吧。

1.申请AppID。

    (微信支付或微信登录等功能需要进行开发者资质认证,准备好300大洋)

2.下载最新SDK。

3.导入jar包,并配置权限。

4.代码实现

①  注册到微信
  1. // 通过WXAPIFactory工厂,获取IWXAPI的实例
  2. api = WXAPIFactory.createWXAPI(this, Constants.APP_ID, true);
  3. api.handleIntent(getIntent(), this);
  4. // 将该app注册到微信
  5. api.registerApp(Constants.APP_ID);
②  发送请求
  1. final SendAuth.Req req = new SendAuth.Req();
  2. req.scope = "snsapi_userinfo";
  3. req.state = "wechat_sdk_demo_test";
  4. api.sendReq(req);
③ 接受微信请求(获取code值)
  1. // 第三方应用发送到微信的请求处理后的响应结果,会回调到该方法
  2. @Override
  3. public void onResp(BaseResp resp) {
  4. int result = 0;
  5. SendAuth.Resp re = ((SendAuth.Resp) resp);
  6. String code = re.code;
  7. switch (resp.errCode) {
  8. case BaseResp.ErrCode.ERR_OK:
  9. result = R.string.errcode_success;
  10. getOpenID(code);
  11. break;
  12. case BaseResp.ErrCode.ERR_USER_CANCEL:
  13. result = R.string.errcode_cancel;
  14. break;
  15. case BaseResp.ErrCode.ERR_AUTH_DENIED:
  16. result = R.string.errcode_deny;
  17. break;
  18. default:
  19. result = R.string.errcode_unknown;
  20. break;
  21. }
  22. Toast.makeText(this, result, Toast.LENGTH_LONG).show();
  23. Toast.makeText(this, code, Toast.LENGTH_LONG).show();
  24. }

通过code获取access_token,code等数据
  1. private void getOpenID(String code) {
  2. // APP_ID和APP_Secret在微信开发平台添加应用的时候会生成,grant_type 用默认的"authorization_code"即可.
  3. String urlStr = "https://api.weixin.qq.com/sns/oauth2/access_token?appid="+Constants.APP_ID+"&secret="+Constants.APP_Secret+
  4. "&code="+code+"&grant_type=authorization_code";
  5. HttpUtils http = new HttpUtils();
  6. // 设置超时时间
  7. //        http.configCurrentHttpCacheExpiry(1000 * 10);
  8. http.send(HttpRequest.HttpMethod.GET, urlStr, null,
  9. new RequestCallBack<String>() {
  10. // 接口回调
  11. @Override
  12. public void onSuccess(ResponseInfo<String> info) {
  13. System.out.println("返回的json字符串:" + info.result);
  14. Toast.makeText(getApplicationContext(), info.result, Toast.LENGTH_SHORT).show();
  15. JSONObject obj = null;
  16. try {
  17. obj = new JSONObject(info.result);
  18. //toast  OpenID
  19. Toast.makeText(getApplicationContext(), obj.getString("openid"), Toast.LENGTH_LONG).show();
  20. } catch (JSONException e) {
  21. e.printStackTrace();
  22. }
  23. }
  24. @Override
  25. public void onFailure(com.lidroid.xutils.exception.HttpException e, String s) {
  26. }
  27. });
  28. }

1.下载的SDK一定要是最新的,旧一点的SDK里面在获取code的时候没有 .code属性,比如官方demo中万年不变的sdk就害的我很惨。

签名生成工具链接。