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
SOS, how can I follow the merchant account in the App? We need to send the logistics information.
If I have any misunderstanding about flutter_line_sdk, please correct me, thank you very much.
Is it possible to provide a way to follow a business? For example,
void followBusinessAccount() async {
final businessAccountID = 'BUSINESS_ACCOUNT_ID';
try {
final followResult = await LineSDK.instance.follow(
accountID: businessAccountID,
);
if (followResult.isSuccess) {
print('Successfully followed business account!');
// Handle successful follow operation
} else {
print('Failed to follow business account: ${followResult.errorMessage}');
// Handle follow failure
}
} on PlatformException catch (e) {
print('Error following business account: ${e.message}');
// Handle platform exceptions
}
}
The text was updated successfully, but these errors were encountered:
The LINE SDK for Flutter project currently primarily provides features such as logging in using a LINE account. As far as I know, there is no public API available for performing arbitrary account follow operations at this time. This operation involves the core interests of user accounts. You can display an "Add Friend" button through some of the methods below and expect users to perform the operation themselves.
When using the LINE SDK for Flutter, add the botPrompt setting when passing in LoginOption.
SOS, how can I follow the merchant account in the App? We need to send the logistics information.
If I have any misunderstanding about flutter_line_sdk, please correct me, thank you very much.
Is it possible to provide a way to follow a business? For example,
The text was updated successfully, but these errors were encountered: