originally posted in:BungieNetPlatform
First off, [b][url=http://www.reddit.com/r/DestinyTheGame/comments/367r88/android_app_introducing_vendor_notifier_for/]I finished the release version of my app[/url][/b]!! Thank you all for putting up with all my questions, I couldn't have done it without y'alls help! :D
Now that it's out in the open, though, a few people are having trouble logging in and I've pinpointed the error to when the app grabs the membership ID and character ID. These are the steps I'm using to get them; does anything jump out as being obviously wrong?
[quote]1) Query http://www.bungie.net/Platform/User/GetBungieNetUser/ using the user's login cookies.
2) Get the user's gamer tag in one of two ways:
--1--> If the player is Playstation, get [b]Response.psnId[/b]
--2--> If the player is Xbox, get [b]Response.gamerTag[/b]
3) Query http://www.bungie.net/Platform/Destiny/SearchDestinyPlayer/{MEM_TYPE}/{GAMER_TAG}/ and get the membership ID by:
-----> MEM_ID = [b]Response[0].membershipId[/b]
4) Query http://www.bungie.net/Platform/Destiny/{MEM_TYPE}/Account/{MEM_ID}/ and get the character ID by:
-----> CHAR_ID = [b]Response.data.characters[0].characterBase.characterId[/b][/quote]
(If there is a subscript like characters[0], that means I'm dealing with the first element in the characters JSONArray)
Many users can log in following these steps, but a few are having difficulty at either step 3 or 4 (don't know which). Would these steps not work if the user has spaces in their gamertag, maybe?
Any help is greatly appreciated :D
English
-
Edited by Rikkert2x: 5/18/2015 8:18:23 AMI've found the solution 1) Query https://www.bungie.net/platform/User/GetMembershipIds/ using the user's login cookies. (private) Response": { "8597234": 254, "4611686018441311466": 2 } in the lib-platform.js of bungie is the following: a.BungieMembershipType = { None: 0, TigerXbox: 1, TigerPsn: 2, TigerDemon: 10, BungieNext: 254, All: -1 }; PSN membershipID = 4611686018441311466 BungieMembershipID = 8597234 Get characters: [url]http://www.bungie.net/Platform/Destiny/2/Account/4611686018441311466/[/url]
-
Edited by Rikkert2x: 5/19/2015 6:20:10 AMDeleted