Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/csharp/294.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
C# 如何创建帐户并获取;“创建”;回答而不是“回答”;“已完成”;使用Paypal Adaptive Accounts SDK_C#_Paypal_Payment_Paypal Adaptive Payments_Paypal Rest Sdk - Fatal编程技术网

C# 如何创建帐户并获取;“创建”;回答而不是“回答”;“已完成”;使用Paypal Adaptive Accounts SDK

C# 如何创建帐户并获取;“创建”;回答而不是“回答”;“已完成”;使用Paypal Adaptive Accounts SDK,c#,paypal,payment,paypal-adaptive-payments,paypal-rest-sdk,C#,Paypal,Payment,Paypal Adaptive Payments,Paypal Rest Sdk,当我试图通过PayPal REST API代表我的用户创建帐户时,我得到了execStatus作为COMPLETED,这意味着该帐户未设置 COMPLETED - The account creation request was successful, but the account holder must be redirected to finish setting up the account. 如何创建帐户并获得CREATED响应 CREATED - Account creation

当我试图通过PayPal REST API代表我的用户创建帐户时,我得到了
execStatus
作为
COMPLETED
,这意味着该帐户未设置

COMPLETED - The account creation request was successful, but the account holder must be redirected to finish setting up the account.
如何创建帐户并获得
CREATED
响应

CREATED - Account creation is complete. No redirection is necessary to let the account holder finish setting up the account.
(at)

在页面顶部:

The CreateAccount API creates a PayPal account on behalf of the specified third party. The account can be a personal account, premier account, or business account.
我不希望我的用户被重定向到贝宝。我将获得他们的银行账户信息,并在我代表他们创建贝宝账户后立即添加银行账户,以便他们能够收到资金

我试图实现的是创建一个PayPal帐户(无需重定向),并添加一个银行帐户,让他们接收其他用户将来的付款

我使用
PayPalAdaptiveAccountsSDK
公共CreateAccountResponse CreateAccount(CreateAccountRequest CreateAccountRequest)方法

PayPalAdaptiveAccountsSDK:

我怎样才能克服这个问题