我目前正在使用PayPal沙盒凭证来测试我的项目。
现在,我想将沙箱环境更改为生活环境,并在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;任何其他需要更改或只是将“沙箱”更改为"live“的操作都可以。
致以敬意,
达哈梅什·索兰奇
发布于 2013-04-10 00:02:51
您需要更改环境,并且需要更新您的API凭据以反映您的活动帐户。
https://stackoverflow.com/questions/15905783
复制相似问题