06-11-2016 10:30
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post

06-11-2016 10:30
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post
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.
Answered! Go to the Best Answer.

- Labels:
-
.NET
-
OAuth 2.0
-
Windows Phone
Accepted Solutions
06-13-2016 03:15
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post

06-13-2016 03:15
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post
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));

06-13-2016 03:06
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post

06-13-2016 03:06
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post
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);

06-13-2016 03:15
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post

06-13-2016 03:15
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post
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));

