-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fatal error: Uncaught Exception: Retrieved a unknown status code 100 #175
Comments
That particular error occurs when you send blank authinfo. Did you authenticate properly? |
Hey @NicklasWallgren I just started getting this same response on ALL checkChallenge and verifyChallenge requests. Nothing in my code has changed at all, but today it started throwing that error for every call. -voxx |
Additional notes from Leah.
|
@NicklasWallgren I already wrote auth info. hmm... I'll try it again and ask again :) |
Thanks for the info @voxx. I'll have to take a look into the problem. |
@voxx Do you know if the signature has to be valid? |
Retrieved a unknown status code 100 (certified by Google ID) // $this->logger->info('profile'); // $this->logger->info('get profile data'); |
I don't believe it actually has to be valid. Many of the API's are still using 0.45 api without hash server, so I'm assuming they aren't passing completely valid signature. (Not 100% positive, but fairly certain of this.) I don't think we need to implement hash server support at this point, but we need to refactor login to include "PlatformRequests". I can probably help cherry pick out the relevant changes from pogoapi / rocketmap that were implemented a few weeks back that cover this aspect if you need me to. -voxx |
Yes Im having this problem today also. |
Any news on this one? |
Is there a solution for this problem ? |
100 means SESSION_INVALIDATED as far as I know. Basically it happens when the first request isn't also signed. The first request needs to be signed with the AuthInfo's token, the requests following that need to be signed with the AuthTicket. |
Does this library have those capabilities @Droeftoeter, @NicklasWallgren ? |
@Droeftoeter it was working before last update. After that, i think somethings changed by Niantic. The AeonLucid, creator POGOProtos, updated his github repo after last update. |
I heard that Niantic updated api. So, this repo has to be updated soon. |
Yes, basically they're slowly phasing out support for 0.45 |
0.45 is officially dead. (uk25 value for 0.45 is no longer valid as of today) However api calls utilizing uk25 value for >0.45 to 0.57.2 still work even with completely invalid hashing. (Paid hashing key is not required to get a valid response back.) uk25 value is known for all versions including 0.57.2, so that's not a problem. @Droeftoeter You're PR was on the right track, but just wasnt quite right yet. I messed around with it for a couple nights but wasn't able to fully wrap my head around the proper flow and structure in order to fix it. I'm happy to lend a hand to help rebuild it if there's interest, but I don't think I'm going to be able to do it without someone elses help who knows a little more about the proper login flow and structure. Most of the other API's have solved it, so the code is readily available to rip out and translate, it's just going to take some time and effort from a few of the php folks to make it happen. I had to switch to the python api for handling captcha solving logic for my map feed, but I'd love to resurrect the php api if theres still anyone around that's able/willing to step in and help. -voxx |
@voxx I've solved it in my own API, but 0.57.2 itself requires a hashing server. If I have time I can try to redo the PR for this lib, and also add the 0.57.2 UK25 value. |
I would love it if things were updated with this library. I have most of my code using it and it's decently simple to use. Hashing server would make me feel a whole lot better since I use this library with real accounts just to get my pokemon IV's and movesets. |
@Droeftoeter . Do you have time to redo the PR for this lib ? |
@Droeftoeter. Still no time ? |
I have a question.
When I use getPokeBank() functionn, I get the error below.
Fatal error: Uncaught Exception: Retrieved a unknown status code 100
in /vendor/nicklasw/pkm-go-api/src/Handlers/RequestHandler.php:163
How can I solve this error?
my source code is..
The text was updated successfully, but these errors were encountered: