Flutter - 将用户重定向到 PlayStore/AppStore 中的订阅页面
Posted
技术标签:
【中文标题】Flutter - 将用户重定向到 PlayStore/AppStore 中的订阅页面【英文标题】:Flutter - Redirect user to the Subscription page in PlayStore/AppStore 【发布时间】:2021-09-18 17:16:21 【问题描述】:我读到“目前,In-app Billing API 不支持从购买应用程序内部以编程方式取消订阅”,我想将用户重定向到此页面以管理他自己的订阅。
我正在使用以下包in_app_purchase 来实现应用内模块。
我无法找到如何从 Flutter 中的应用程序打开订阅页面。
【问题讨论】:
【参考方案1】:您可以启动以下 URL。这将重定向到 Apple App Store 中的 Manage Subscription
页面。
launch("https://apps.apple.com/account/subscriptions");
你可以为 android 启动以下 URL。
launch(
'https://play.google.com/store/account/subscriptions?sku=pro.monthly.testsku&package=com.example.app',
);
替换为 Android 的 sku
和 package
。
您需要在pubspec.yaml
中添加url_launcher
并且也导入这个包,
import 'package:url_launcher/url_launcher.dart';
【讨论】:
以上是关于Flutter - 将用户重定向到 PlayStore/AppStore 中的订阅页面的主要内容,如果未能解决你的问题,请参考以下文章
Flutter GetX 路由会重定向到 initialRoute