gpt4 book ai didi

ios - 从云代码发回数据

转载 作者:行者123 更新时间:2023-11-29 12:07:41 25 4
gpt4 key购买 nike

我在 Parse Cloud Code 中使用 Stripe 并收到一个 Stripe ID(字符串),但我想将该 Stripe ID 发送回 Xcode。这样做的最佳方法是什么?

我尝试首先将 strip ID 发送到 Parse,然后在 Xcode 中我进行提取...但我认为这是一个坏主意,因为如果有多个用户同时处理付款,则很难为用户获得正确的 strip ID。

最佳答案

To return data from cloud code, take a look at this tutorial post .

基本上你所要做的就是像这样返回 strip id

response.success(stripeId);

Receiving data looks like this :

[PFCloud callFunctionInBackground:@"averageStars" withParameters:params block:^(NSString *stripeId, NSError *error) {
if (!error) {
// code
}
}];

关于ios - 从云代码发回数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34457504/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com