android ——第三方微信登录

在包名下单独建一个包 wxapi   ===========


import android.graphics.Bitmap;

import android.graphics.BitmapFactory;

import android.os.Bundle;

import android.os.Handler;

import android.os.Message;

import android.support.annotation.Nullable;

import android.util.Log;

import android.view.View;

import android.widget.EditText;

import android.widget.FrameLayout;

import android.widget.ImageView;

import android.widget.TextView;

import android.widget.Toast;

import com.etcxc.android.R;

import com.etcxc.android.base.App;

import com.etcxc.android.base.BaseActivity;

import com.etcxc.android.utils.PrefUtils;

import com.etcxc.android.utils.ToastUtils;

import com.tencent.mm.sdk.openapi.SendAuth;

import java.io.IOException;

import java.io.InputStream;

import okhttp3.Call;

import okhttp3.Callback;

import okhttp3.OkHttpClient;

import okhttp3.Request;

import okhttp3.Response;

import static com.etcxc.android.R.id.editText1;

import static com.etcxc.android.R.id.editText2;

/**

* Created by 刘涛 on 2017/6/7 0007.

*/

public class Login2Activity extends BaseActivity implements View.OnClickListener {

protected final String TAG = ((Object) this).getClass().getSimpleName();

private boolean userTag;

private EditText f2_editText1;

private EditText f2_editText2;

private TextView f2_textView3;

private ImageView iv_wx_login;

private ImageView iv_qq_login;

public String userName;

public String passWord;

private Bitmap bitmap;

private FrameLayout flwx_user;

private FrameLayout fl_f2;

SendAuth.Req req;

private static final String WEIXIN_SCOPE = "snsapi_userinfo";// 用于请求用户信息的作用域

private static final String WEIXIN_STATE = "login_state"; // 自定义

private static final int ERROR = 1;

private static final int SUCCESS = 2;

private TextView username;

private TextView usersex;

private ImageView head;

private TextView openid;

private Handler handler = new Handler() {

@Override

public void handleMessage(Message msg) {

switch (msg.what) {

case SUCCESS:

head.setImageBitmap((Bitmap) msg.obj);

break;

case ERROR:

Toast.makeText(App.getContext(), "请求超时", Toast.LENGTH_SHORT).show();

break;

}

}

};

@Override

protected void onCreate(@Nullable Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.login);

flwx_user = (FrameLayout) findViewById(R.id.flwx_user);

fl_f2 = (FrameLayout) findViewById(R.id.fl_f2);

username = (TextView) findViewById(R.id.tv_username);

usersex = (TextView) findViewById(R.id.tv_usersex);

head = (ImageView) findViewById(R.id.iv_userhead);

openid = (TextView) findViewById(R.id.tv_userid);

f2_editText1 = (EditText) findViewById(editText1);//用户名

f2_editText2 = (EditText) findViewById(editText2);//密码

f2_textView3 = (TextView) findViewById(R.id.textView3);//登录

iv_wx_login = (ImageView) findViewById(R.id.iv_wx_login);

iv_qq_login = (ImageView) findViewById(R.id.iv_qq_login);

initview();

}

private void initview() {

userTag = PrefUtils.getBoolean(App.getContext(), "userTag", false);

if (userTag) {

//加载头像url

String headurl = PrefUtils.getString(App.getContext(), "headurl", null);

flwx_user.setVisibility(View.VISIBLE);

fl_f2.setVisibility(View.INVISIBLE);

if (headurl != null)

SetWXUserInfo(headurl);

} else {

fl_f2.setVisibility(View.VISIBLE);

flwx_user.setVisibility(View.INVISIBLE);

}

f2_textView3.setOnClickListener(this);

iv_wx_login.setOnClickListener(this);

iv_qq_login.setOnClickListener(this);

userName = f2_editText1.getText().toString();

passWord = f2_editText2.getText().toString();

username.setText(PrefUtils.getString(App.getContext(), "username", null));

openid.setText(PrefUtils.getString(App.getContext(), "openid", null));

// headurl.setText(PrefUtils.getString(App.getContext(),"headurl",null));

if (PrefUtils.getInt(App.getContext(), "usersex", 1) == 1) {

usersex.setText("男");

} else {

usersex.setText("女");

}

}

private void SetWXUserInfo(final String url) {

new Thread() {

@Override

public void run() {

OkHttpClient uOkHttpClient = new OkHttpClient();

Request requst = new Request.Builder()

.url(url)

.get()

.build();

uOkHttpClient.newCall(requst).enqueue(new Callback() {

@Override

public void onFailure(Call call, IOException e) {

}

@Override

public void onResponse(Call call, Response response) throws IOException {

InputStream is = response.body().byteStream();//字节流

bitmap = BitmapFactory.decodeStream(is);

//使用Hanlder发送消息

Message msg = Message.obtain();

msg.what = SUCCESS;

msg.obj = bitmap;

handler.sendMessage(msg);

}

});

}

}.start();

}

@Override

public void onClick(View v) {

switch (v.getId()) {

case R.id.textView3:

ToastUtils.showToast("登录成功");

break;

case R.id.iv_wx_login://微信登录

WXLogin();

finish();

break;

case R.id.iv_qq_login://

QQLogin();

break;

}

}

/**

* 登录微信

*/

private void WXLogin() {

if (App.WXapi != null && App.WXapi.isWXAppInstalled()) {

req = new SendAuth.Req();

req.scope = WEIXIN_SCOPE;

req.state = WEIXIN_STATE;

App.WXapi.sendReq(req);

Log.i(TAG, "。。。。。。。。。。。。WxLogin(),微信登录。。。。。。。");

ToastUtils.showToast("请稍后");

} else

ToastUtils.showToast("用户未安装微信");

}

/**

* qq登录

*/

private void QQLogin() {

}

@Override

public void onResume() {

super.onResume();

}

@Override

public void onStart() {

super.onStart();

}

}


package com.etcxc.android.ui.activity;

import android.content.Intent;

import android.os.Bundle;

import android.support.annotation.Nullable;

import android.support.v7.app.AppCompatActivity;

import android.widget.Toast;

import com.etcxc.android.base.App;

import com.etcxc.android.utils.LogUtil;

import com.etcxc.android.utils.PrefUtils;

import com.tencent.mm.sdk.openapi.BaseReq;

import com.tencent.mm.sdk.openapi.BaseResp;

import com.tencent.mm.sdk.openapi.IWXAPIEventHandler;

import com.tencent.mm.sdk.openapi.SendAuth;

import com.tencent.mm.sdk.openapi.WXAPIFactory;

import org.json.JSONException;

import org.json.JSONObject;

import java.io.IOException;

import okhttp3.Call;

import okhttp3.Callback;

import okhttp3.OkHttpClient;

import okhttp3.Request;

import okhttp3.Response;

import static android.R.attr.path;

import static com.etcxc.android.base.App.WX_APP_ID;

import static com.etcxc.android.base.App.WX_APP_SECRET;

import static com.etcxc.android.base.App.userTag;

/**

* Created by 刘涛 on 2017/6/5 0005.

*/

public class WXEntryActivity extends AppCompatActivity implements IWXAPIEventHandler {

protected final String TAG = ((Object) this).getClass().getSimpleName();

private BaseResp resp = null;

// 获取第一步的code后,请求以下链接获取access_token

private String GetCodeRequest = "https://api.weixin.qq.com/sns/oauth2/access_token?appid=APPID&secret=SECRET&code=CODE&grant_type=authorization_code";

// 获取用户个人信息

private String GetUserInfo = "https://api.weixin.qq.com/sns/userinfo?access_token=ACCESS_TOKEN&openid=OPENID";

private final OkHttpClient client = new OkHttpClient();

@Override

protected void onCreate(@Nullable Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

App.WXapi = WXAPIFactory.createWXAPI(this, WX_APP_ID, false);

//将你收到的intent和实现IWXAPIEventHandler接口的对象传递给handleIntent方法

App.WXapi.handleIntent(this.getIntent(), this);

}

@Override

public void onReq(BaseReq baseReq) {

// finish();

}

/**

* 点击确认会回调的方法

* 第三方应用发送到微信的请求处理后的响应结果,会回调到该方法

*

* @param resp

*/

@Override

public void onResp(BaseResp resp) {

String result = "";

switch (resp.errCode) {

case BaseResp.ErrCode.ERR_OK:

result = "发送成功";

Toast.makeText(this, result, Toast.LENGTH_LONG).show();

SendAuth.Resp sendResp = (SendAuth.Resp) resp;

if (sendResp != null) {

String code = sendResp.token;

getAccess_token(code);

}

userTag = true;

PrefUtils.setBoolean(App.getContext(), "userTag", userTag);

finish();

break;

case BaseResp.ErrCode.ERR_USER_CANCEL:

result = "发送取消";

Toast.makeText(this, result, Toast.LENGTH_LONG).show();

//finish();

break;

case BaseResp.ErrCode.ERR_AUTH_DENIED:

result = "发送被拒绝";

Toast.makeText(this, result, Toast.LENGTH_LONG).show();

//finish();

break;

default:

result = "发送返回";

Toast.makeText(this, result, Toast.LENGTH_LONG).show();

//finish();

break;

}

finish();

}

/**

* 获取openid accessToken值用于后期操作

*

* @param code 请求码

*/

private void getAccess_token(final String code) {

//用户信息

String url = "https://api.weixin.qq.com/sns/oauth2/access_token?appid="

+ WX_APP_ID

+ "&secret="

+ WX_APP_SECRET

+ "&code="

+ code

+ "&grant_type=authorization_code";

run(url);

}

public void run(String url) {

final Request request = new Request.Builder()

//.url("http://publicobject.com/helloworld.txt")

.url(url)

.get()

.build();

client.newCall(request).enqueue(new Callback() {

@Override

public void onFailure(Call call, IOException e) {

}

@Override

public void onResponse(Call call, Response response) throws IOException {

if (!response.isSuccessful()) ;

try {

String responseStr = response.body().string();

JSONObject jsonObject = new JSONObject(responseStr);

String openid = jsonObject.getString("openid").toString().trim();

String access_token = jsonObject.getString("access_token").toString().trim();

getUserMesg(access_token, openid);

//                String openid = jsonObject.getString("openid").toString().trim();

//                  String access_token = jsonObject.getString("access_token").toString().trim();

//                  LogUtil.i(TAG, "getUserMesg 拿到了用户Wx基本信息.. nickname:" + openid + "asdasdasdadadadad测试2222" + access_token);

} catch (JSONException e) {

e.printStackTrace();

}

}

});

}

/**

* 获取微信的个人信息

*

* @param access_token

* @param openid

*/

private void getUserMesg(final String access_token, final String openid) {

JSONObject jsonObject = null;

String url = "https://api.weixin.qq.com/sns/userinfo?access_token="

+ access_token

+ "&openid="

+ openid;

LogUtil.i(TAG, "getUserMesg:" + path);

try {

final Request request = new Request.Builder()

.url(url)

.get()

.build();

client.newCall(request).enqueue(new Callback() {

@Override

public void onFailure(Call call, IOException e) {

}

@Override

public void onResponse(Call call, Response response) throws IOException {

String responseStr = response.body().string();

try {

JSONObject jsonObject = new JSONObject(responseStr);

String nickname = jsonObject.getString("nickname");//名字

int sex = Integer.parseInt(jsonObject.get("sex").toString());//性别

String headimgurl = jsonObject.getString("headimgurl");  //头像

String openid = jsonObject.getString("openid");

String unionid = jsonObject.getString("openid");

PrefUtils.setString(App.getContext(), "openid", openid);

PrefUtils.setString(App.getContext(), "username", nickname);

PrefUtils.setInt(App.getContext(), "usersex", sex);

PrefUtils.setString(App.getContext(), "headurl", headimgurl);

PrefUtils.setString(App.getContext(), "unionid", unionid);

LogUtil.i(TAG, "getUserMesg 拿到了用户Wx基本信息:");

LogUtil.i(TAG, "名字.. nickname:" + nickname);

LogUtil.i(TAG, "性别.. nickname:" + sex);

LogUtil.i(TAG, "头像:" + headimgurl);

//todo:不使用eventbus

//                        EventBus.getDefault().post(new MessageEvent(nickname));

//拿到这些信息后进行相应的业务操作,提交服务器

} catch (JSONException e) {

e.printStackTrace();

}

}

});

} catch (Exception e) {

e.printStackTrace();

}

return;

}

@Override

protected void onNewIntent(Intent intent) {

super.onNewIntent(intent);

setIntent(intent);

App.WXapi.handleIntent(intent, this);

finish();

}

}

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,271评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,275评论 2 380
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,151评论 0 336
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,550评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,553评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,559评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,924评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,580评论 0 257
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,826评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,578评论 2 320
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,661评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,363评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,940评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,926评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,156评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,872评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,391评论 2 342

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,389评论 25 707
  • 在本文之前请先去官方下载SDK 如果你做了分享那就不需要了; 注:你做了分享的意思 是你在清单文件下面已经注册了所...
    sakura_L阅读 2,839评论 0 1
  • 准备材料:微信开发者账号注册你的APPlibammsdk.jar包debug.keystore文件 准备工作 申请...
    Nickyzhang阅读 11,729评论 18 31
  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,580评论 18 139
  • 我不知道美好的爱情背后还有这么多沉重 甚至改变了我的一生
    尘埃木木阅读 185评论 0 0