1

我目前正在使用 PayPal Sandbox 凭据来测试我的项目。

现在我想将沙盒环境更改为实时环境,并且我在 c# .Net 中使用 NVP

NVPCallerServices caller = new NVPCallerServices();

IAPIProfile profile = ProfileFactory.createSignatureAPIProfile();

 profile.APIUsername = APIUserName;
 profile.APIPassword = APIPAssword;
 profile.APISignature = APISignature;
 **profile.Environment = "live";**
 caller.APIProfile = profile;

任何其他需要更改或只是将“沙箱”更改为“实时”的东西都可以使用

问候,

达尔梅什·索兰基

4

1 回答 1

1

您需要更改环境,并且需要更新您的 API 凭证以反映您的真实账户。

于 2013-04-09T16:02:50.597 回答