URL开通CashApp支付?
URL to open a CashApp payment?
我正在构建一个应用程序,我希望用户能够在交易过程中尽可能多地单击 link 打开 CashApp(以及其他各种 P2P 支付应用程序)。我的客户不希望该应用程序实际处理付款,只是为了将其转发到付款的地方。
因此,例如,我可以去 venmo.com/username
打开 Venmo 应用程序到某个用户的个人资料,这对我来说基本上足够了。 (有人知道如何在 url 中包含金额或消息吗?)
但是 cash.app/username
转到一个网页,该网页将我引导至 App Store 获取应用程序,如果已经下载,甚至不会在我的 phone 上打开该应用程序。
有人知道怎么做吗?
目前,Square 的 API 目前无法与 Cash 应用程序集成或接受或发送 Square Cash 付款。
要将信息传递给 Venmo 应用,您可以使用:
venmo://paycharge?txn=pay&recipients=someone&amount=9.99¬e=For%20Things
这是 Venmo 深层链接的 url 格式:
https://venmo.com/<USER_NAME_1>,<USER_NAME_2>...?txn=<charge|pay>¬e=<NOTE>&amount=<AMOUNT>
您可以阅读有关 url format for Venmo Deeplinking here 的更多信息。
这其实很简单,有一个通用的link:
https://cash.app/$username/amount
以下示例将为用户名为 'helloworld' 的用户打开 $12.50 的现金应用程序付款:
https://cash.app/$helloworld/12.50
##"这其实很简单,有一个通用的 link:
https://cash.app/$username/amount
以下示例将为用户名为 'helloworld':
的用户打开一个现金应用支付 $12.50
https://cash.app/$helloworld/12.50"##
我也使用了相同的格式,但我用的不是应用程序而是我:
https://cash.me/$username/5.00/
当我点击锚定的按钮时:
"href="https://cash.me/$username/5.00/">"
用APP的phone用用户名打开支付$5.00,对方只需要点击发送即可。
我正在构建一个应用程序,我希望用户能够在交易过程中尽可能多地单击 link 打开 CashApp(以及其他各种 P2P 支付应用程序)。我的客户不希望该应用程序实际处理付款,只是为了将其转发到付款的地方。
因此,例如,我可以去 venmo.com/username
打开 Venmo 应用程序到某个用户的个人资料,这对我来说基本上足够了。 (有人知道如何在 url 中包含金额或消息吗?)
但是 cash.app/username
转到一个网页,该网页将我引导至 App Store 获取应用程序,如果已经下载,甚至不会在我的 phone 上打开该应用程序。
有人知道怎么做吗?
目前,Square 的 API 目前无法与 Cash 应用程序集成或接受或发送 Square Cash 付款。
要将信息传递给 Venmo 应用,您可以使用:
venmo://paycharge?txn=pay&recipients=someone&amount=9.99¬e=For%20Things
这是 Venmo 深层链接的 url 格式:
https://venmo.com/<USER_NAME_1>,<USER_NAME_2>...?txn=<charge|pay>¬e=<NOTE>&amount=<AMOUNT>
您可以阅读有关 url format for Venmo Deeplinking here 的更多信息。
这其实很简单,有一个通用的link:
https://cash.app/$username/amount
以下示例将为用户名为 'helloworld' 的用户打开 $12.50 的现金应用程序付款:
https://cash.app/$helloworld/12.50
##"这其实很简单,有一个通用的 link:
https://cash.app/$username/amount 以下示例将为用户名为 'helloworld':
的用户打开一个现金应用支付 $12.50https://cash.app/$helloworld/12.50"##
我也使用了相同的格式,但我用的不是应用程序而是我:
https://cash.me/$username/5.00/
当我点击锚定的按钮时: "href="https://cash.me/$username/5.00/">"
用APP的phone用用户名打开支付$5.00,对方只需要点击发送即可。