-
Notifications
You must be signed in to change notification settings - Fork 46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Question: For native app login, how to properly setup the redirection to my app #120
Comments
same question |
Hi @GinoLin980 ,
Is it a public access app that I can download? Thanks. |
Wow, it's late night for us to have discussion here.
Example code in my app Future<dynamic> lineSignIn(context) async {
Map<String, dynamic> data = {};
try {
final loginOption = LoginOption(false, 'normal'); // 設定登入選項
final result = await LineSDK.instance.login(scopes: ['profile', 'openid', 'email'], option: loginOption); // 執行登入
...
} Considered myself as a beginner on this SDK and Flutter ecosystem, I might have some improper setup. As this is not a urgent case, just take it slow and have a great night. |
I have a Flutter native app, when running on emulators, they were fine as they used internal browser to login.
But when I test my app on my own Android phone, which has native LINE, to login, it logged in seccessfully and did not pop to my app, it just stay in LINE native app.
Is there any guide or instructions specifying on deeplinking or callback or something on solving this?
The text was updated successfully, but these errors were encountered: