解决方法:
1、先注册应用:
privateIWXAPImsgApi;
msgApi=WXAPIFactory.createWXAPI(this,null);
msgApi.registerApp(Constants.APP_ID)。
2、然后拉取微信到授权登陆界面:
finalSendAuth.Reqreq=newSendAuth.Req();
req.scope="snsapi_userinfo";
req.state="wxdemo";
msgApi.sendReq(req);
3、在WXEntryActivity中的onResp(BaseRespresp)方法中获取code:
Stringcode=((SendAuth.Resp)resp).code;//需要转换一下才可以。