问题描述
我已经登录了开发者网站,但是当我进入应用程序"页面来创建我的应用程序时,会看到以下错误消息:
I've signed in to the developer website but when I go to the apps page to create my app I see the following error message:
Problem creating sandbox facilitator account [Error code: 2001]
当我在沙盒帐户页面上查看时,我看到那里有一个主持人帐户([email protected])
When I look on the sandbox accounts page I see there is a facilitator account there ([email protected])
当我单击创建应用程序"按钮时,沙盒开发人员帐户"下拉列表为空,当我尝试创建应用程序时,出现以下错误消息:
When I click the "create app" button the "sandbox developer account" dropdown is empty and when I try to create an app I get the following error message:
We’re sorry, but something went wrong while creating the application. Please try again.
到目前为止,我已经:
- 创建了新的沙箱用户
- 向Paypal的技术支持提交了查询(无响应)
- 留了一天然后再试一次
- 已登录,已注销...
推荐答案
我遇到了同样的问题.尽管我之前已经设置了帐户,但沙盒开发人员帐户"下拉框没有任何条目-因此我无法创建一个应用程序.经过一番尝试和错误破解之后,我终于找到了一种在html select中注入有效选项的方法,并最终成功创建了该应用程序.
I had the same problem. The "Sandbox developer account" dropdown box had no entries although I had set up accounts before - so I couldn't create an app.After some trial and error hacking I finally found a way to inject a valid option in the html select and successfully created the app in the end.
方法如下:
登录到您的developer.paypal.com个人资料,然后转到沙箱-帐户".
Log in to your developer.paypal.com profile and go to Sandbox - Accounts.
只需在Firefox中使用Firebug或在Chrome中使用开发人员工具来检查源:检查您的BUSINESS帐户的源,您将找到如下代码行:
Just use Firebug in Firefox or Developer Tools in Chrome to examine the source: Check the source of your BUSINESS account and you will find a code line like this:
<a class="profile" target="/developer/accounts/detail/2297102045097598612">Profile</a>
记下ID(例如2297102045097598612),国家/地区代码(例如美国)和电子邮件地址.
Note the id (e.g. 2297102045097598612), the country code (e.g. US) and the email address.
现在转到信息中心-我的应用&凭据,然后按创建应用"
Now go to Dashboard - My Apps & Credentials and press "Create app"
打开Firebug/Dev.工具并检查沙盒开发者帐户"下拉框.右键单击dom中的空选择,然后选择编辑为HTML".输入带有以前记下的值的选项标签,如下所示:
Open Firebug/Dev. Tools and examine the "Sandbox developer account" dropdown box. Right-Click the empty select in the dom and choose "Edit as HTML". Enter an option tag with your formerly noted values, just like this:
<option value="2297102045097598612,[email protected]">[email protected] (US)</option>
检查该选项现在是否显示在下拉框中.
Check that the option now appears in the dropdown box.
在应用程序名称"字段中输入名称,然后按创建应用程序".
Enter a name in the "App name" field and press "Create app".
就是这样.希望我能帮上忙.
That's it. Hope I could help.
这篇关于无法为Paypal REST API创建应用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!