Google OAuth is no longer supported for progressive applications?

I have a progressive application (as defined in https://developers.google.com/web/progressive-web-apps/ ) and it just started getting disallowed_useragentwhen the Google OAuth stream starts

I found this notification https://developers.googleblog.com/2016/08/modernizing-oauth-interactions-in-native-apps.html

It seems that progressive applications should not have been banned from the stream.

Progressive applications are not built-in web browsing, they are the same web page and a normal browser without controls. There is no native level, and I cannot use my own SDK

What is the new recommended approach for progressive web applications?

+4
source share
2 answers

the long story is short, it works again - for several weeks now

I could not find specific release notes, and I am not sure if the problem was fixed on the side of Apple or Google, please share if you know - I am curious if this is a permanent solution

0
source

The recommended approach is to use the device’s system browser or your own SDK.

If you are a Cordoba user, use this. It works for me. This is a good replacement for InAppBrowser: https://github.com/EddyVerbruggen/cordova-plugin-googleplus

-1
source

Source: https://habr.com/ru/post/1676188/


All Articles