Reputation: 1538
I am trying to make an Android app which communicates with WeChat app.
Followed the sample from here
But in the sample and in my own app I am able to make api calls, which is being done. For example api.sendResp(resp) results to true.
But nothing happens, while authorising I still get null token from SendAuth.Resp.
Has anyone faced this problem?
Upvotes: 4
Views: 6151
Reputation: 239
After Searching a lot, finally got answer as Eric suggest login to weixin.qq.com site
here you need to submit 2 things, application package name and signature, signature is not any sha1 or md 5
download we chat apk from this link and generate signature from this apk, and submit on site.
Upvotes: 0
Reputation: 31
There's much more to check than just the package signature when trying to send a message to WeChat. Below is a list of issues I found while integrating with WeChat that cause the same issue you're having:
Working example with successful SendAuth.Resp
Upvotes: 3
Reputation: 383
I have tried to implement the integration of WeChat on Meteor before. The difficulty lies in getting the correct signature to apply for the WeChat App ID. I follow the tutorials and get my app work here: http://blog.sanuker.com/?p=691 Hope it helps! Good luck.
Upvotes: 0
Reputation: 111
Two things to check:
make sure those and you'll get it work.
good luck.
Upvotes: 4