Cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Callback URL for Windows apps

ANSWERED

Hi,

 

I can't seem to figure out the callback url for Windows Store Applications and xamarin.ios and android. I tried [appname]://[string] but it does not recognize my app with the appname. Any recommendations? Thanks.

Best Answer
0 Votes
1 BEST ANSWER

Accepted Solutions

I think I was able to solve it using: where callback is the app callback in settings

 var redirecUrl = await WebAuthenticationBroker.AuthenticateAsync(WebAuthenticationOptions.None, url, callback));

View best answer in original post

Best Answer
0 Votes
2 REPLIES 2

I tried using the code below to open the Authentication Page of Fitbit, instead of opening a webview. However, when I am logging in, I'm getting a could not connect response.

 

 var redirectUrl = await WebAuthenticationBroker.AuthenticateAsync(WebAuthenticationOptions.None, url);
Best Answer
0 Votes

I think I was able to solve it using: where callback is the app callback in settings

 var redirecUrl = await WebAuthenticationBroker.AuthenticateAsync(WebAuthenticationOptions.None, url, callback));
Best Answer
0 Votes