08-22-2022 08:58
08-22-2022 08:58
I added a subscriber only 1 subscriber to my application settings but when I attempt to verify the subscriber, two GET requests are made to 2 different verification codes. My subscriber endpoint returns an HTTP status code of 204 but the other random endpoint returns 404. What is happening here? Thank you.
08-22-2022 11:26
08-22-2022 11:26
I believe what you are seeing is the correct process for verifying your subscriber. When you press the "verify" button, you should receive to verification code; one that is correct and one that is incorrect. The correct code you will respond with a 204. The incorrect code you will respond with a 404. Once you have responded correctly, the "verify" button should be replaced with a timestamp when the verification successfully occurred.
See https://dev.fitbit.com/build/reference/web-api/developer-guide/using-subscriptions/#Verifying-a-Subs... for more information.
08-22-2022 12:51
08-22-2022 12:51
Thanks Gordon! Then in my case the verify button is still there present and looks like my application still isn't verified even though both requests responded correctly. What can I do to resolve this?