In my web apps, I'm using single page app using Angular
and the callback url is my apps is http://domainname.com/#!/callback-fitbit
when I tried to put in "Register an App" the callback URL, I'm getting this error
Best Answer
Fitbit Developers oversee the SDK and API forums. We're here to answer questions about Fitbit developer tools, assist with projects, and make sure your voice is heard by the development team.
That's not a valid redirect URI because it should be "https://" (two slashes).
Also, if you're using the Implicit Grant Flow, you cannot use a URL fragment (#) in your redirect URI, as Fitbit must overwrite it with the OAuth 2 values.
Best Answer