在Android上使用微信sdk在微信上分享

时间:2014-11-27 13:11:20

标签: android wechat

您好我想使用微信SDK从我的应用程序分享图像到微信。我已经下载了this样本,但它无效。我还按照here的说明添加debug keystore。方案如下: - 如果用户未在微信应用程序中登录,则示例应用程序在微信应用程序中打开登录页面,但登录后没有任何内容发生了。如果用户已登录,则不会发生任何事情。我正在使用在iOS中工作的相同应用ID,所以我不知道应用注册中存在任何问题。如果有人在微信上做过分享,请帮帮我。这是我的代码

//在OnCreate中我写了

    api = WXAPIFactory.createWXAPI(this, Constants.WECHAT_APPID);
    weChatHandler = new WechatHandler(); //WechatHandler is imlemented by  WXAPIEventHandler
    api.handleIntent(getIntent(), weChatHandler);

//共享代码

            Bitmap bmp = BitmapFactory.decodeResource(getResources(), R.drawable.abt_image);

            //Init a WXImageObject object
            WXImageObject imgObj = new WXImageObject(bmp);
            Bit

            WXMediaMessage msg = new WXMediaMessage();
            msg.mediaObject = imgObj;
            Bitmap thumbBmp = Bitmap.createScaledBitmap(bmp, 50, 50, true);
            bmp.recycle();
            msg.thumbData = Utils.bmpToByteArray(thumbBmp, true); //set the thumbnail
            SendMessageToWX.Req req = new SendMessageToWX.Req();
            req.transaction = buildTransaction("img");
            req.message = msg;
            req.scene = SendMessageToWX.Req.WXSceneSession;
            api.sendReq(req);

1 个答案:

答案 0 :(得分:2)

首先,您必须确保thumbData应在32KB以内

  

注意:文件大小应在32KB以内。

您可以自行查看wechat document