microsoft / winsdkfb

The Windows SDK for Facebook allows developers to provide Facebook integration for Windows Apps.
Other
182 stars 101 forks source link

Use webauth on develop branch #280

Open ehdgns3136 opened 5 years ago

ehdgns3136 commented 5 years ago

I wonder why there is no way to show feed/requests/send dialogs through web auth on develop branch which is the function exist on webauth_dialogs branch. Is there any chance that webauth_dialogs can be merged to develop and published?

Thanks.

johanlindfors commented 5 years ago

The Web Authentication functionality and specification is only for authentication and doesn't have any dialogs as far as I understand it. In case you need dialogs, you need to go the WebView path.

ehdgns3136 commented 5 years ago

Well, if you see the link that i post below, you can see that i have a problem with opening a dialog with webview in my app. https://github.com/microsoft/winsdkfb/issues/279 here. Referring to that link, the reason i try to open dialog through webauth is that i successfully open a dialog with the method LoginAsync with option webauth. But in case of webview, i can't no matter what i do... Now i'm finding a way to resolve that exception in the link. And from the another issue, i realize that there is the way to show feed/request/send dialog with webauth way on webauth_dialogs branch. So for workaround, i try to use the sdk in webauth_dialogs branch but its commit is about 80 commits before develop branch. So i worry about the other functionalities that could be missing. That's why i ask about the merging webauth_dialogs into develop branch.

Thanks