- 微信分享getTokenFromWX方法ARN
没复先路径,线上ARN,有日志 [图片] [图片] [图片] [图片] [图片]
2022-11-24 - 微信sdk版本6.8.0不支持华为手机微信双开应用分享唤起
官方提示“微信升级 targetSdkVersion 30,请开发者及时适配”,SDK必须升级到6.8.0。 之前微信自动升级到6.6.5以上的版本也存在华为多款手机不支持唤起双开微信,后来没办法降级到6.6.4版本,但是现在必须要升级,没办法了,请问有办法解决吗。 [图片]
2021-10-31 - 微信7.0.20, android11,是不支持imageData分享图片了吗
https://developers.weixin.qq.com/doc/oplatform/Mobile_App/Share_and_Favorites/Android.html 图片分享使用Bitmap分享也提示需要使用FileProvider,是android11,微信7.0.12后都只能使用setImagePath方法吗 private static boolean sharePicture(String filePath, Bitmap bmp, int scene, String appId) { WXImageObject imageObject = new WXImageObject(bmp); // imageObject.setImagePath(filePath); Bitmap thumbBmp; // thumb is always created within this method, so recycle is required if (bmp.getWidth() == THUMB_SIZE && bmp.getHeight() == THUMB_SIZE) { thumbBmp = bmp; } else { thumbBmp = Bitmap.createScaledBitmap(bmp, THUMB_SIZE, THUMB_SIZE, true); bmp.recycle(); } return share(imageObject, null, thumbBmp, null, scene, appId); }
2020-11-07 - android 分享失败,多文件分享仅支持照片格式
Intent intent = new Intent(); intent.putExtra(Intent.EXTRA_TEXT, content); intent.setComponent(componentName); intent.setAction(Intent.ACTION_SEND); intent.setType("image/*"); intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(file)); context.startActivity(intent); app系统分享多图,单图到微信好友提示错误。[图片]app:好衣库,爱库存,宝贝仓,手机相册
2020-07-30