无法在PayPal开发中批量上传沙盒帐户

时间:2016-06-14 09:06:53

标签: paypal paypal-sandbox paypal-rest-sdk

我创建了一个文件来批量上传虚构的沙盒帐户。但是PayPal总是会抛出一个错误:

enter image description here

我做了所需的一切:

  • 该文件必须以UTF-16 Little Endian编码(但不是用BOM或w / o表示)

  • 该文件必须具有.txt或.tsv扩展名

  • 使用Tab。

  • 分隔文件中的每个属性
  • 文件中的第一行必须以井号开头("#")

  • 该文件必须至少有一行Sandbox测试帐户数据

  • 文件大小不得超过1 Mb。

文件:

#country-code   account-type    email   password    firstname   lastname    PayPal-balance  verified    credit-card-type    payment-card

US  BUSINESS    test-biz@gmail.com  12345678    fname   lname   0   Y   VISA
US  PERSONAL    test-per@gmail.com  12345678    fname   lname   100 N   MASTERCARD  PAYPAL

我尝试使用BOM UTF-16LE而没有。没有机会。有没有人经历类似的事情?该功能是否有用?

1 个答案:

答案 0 :(得分:0)

使用以下设置将文件保存在Sublime Text 3中,最终成功:

  • 带BOM的UTF-16LE
  • UNIX Line Ending(LF)

enter image description here

PayPal没有对BOM和行结尾说一句话。