You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have implemented the package in my flutter like below. the LinkedIn sign in page opened in web view and tried to login in LinkedIn using the google account instead providing LinkedIn pass and username. I know if we want to use google account then implementing google auth is the logic. but there is a catch, I created my LinkedIn account using google and for sign in using google account. but this flow not supported by your package. in this scenario what to do???
To be honest it sounds like that your doing something wrong. Why would you use LinkedIn signup if you already signup via Google to the LinkedIn? Wouldn't then correct approach be to use simply Google oAuth as you mentioned?
Anyhow, I don't have access right now to test it on my side but form that you see (web form) is provided directly from LinkedId and I am not able to do anything on that side.
You can verify also this behaviour on other applications like
[INFO:CONSOLE(65)] "[GSI_LOGGER]: Google Sign In does not support web view.", source: https://ssl.gstatic.com/_/gsi/_/js/k=gsi.gsi.en_GB.pzaNX9A1hic.O/am=AACRYMAB/d=1/rs=AF0KOtWklBrc0CZDcPmw7B40d_zwfPpLqg/m=credential_page_library (65)
I have implemented the package in my flutter like below. the LinkedIn sign in page opened in web view and tried to login in LinkedIn using the google account instead providing LinkedIn pass and username. I know if we want to use google account then implementing google auth is the logic. but there is a catch, I created my LinkedIn account using google and for sign in using google account. but this flow not supported by your package. in this scenario what to do???
***MaterialPageRoute(
builder: (context) => LinkedInAuthCodeWidget(
appBar: AppBar(title: const Text("Rablo.in")),
redirectUrl: dotenv.env['LINKEDIN_REDIRECT_URI'],
clientId: dotenv.env['LINKEDIN_CLIEN_ID'],
// clientSecret: dotenv.env['LINKEDIN_CLIENT_SECRET'],
destroySession: false,
onGetAuthCode:
(final AuthorizationSucceededAction response) {
print('Auth code ${response.codeResponse.code}');
print('State: ${response.codeResponse.state}');
Navigator.pop(context);
// Navigator.pushReplacement(
// context,
// MaterialPageRoute(
// builder: (context) => const TutorHomePage(),
// ),
// );
},
The text was updated successfully, but these errors were encountered: