我正在尝试为移动应用创建用户。详细信息如下:
标题-内容类型:application/json
,
JSON正文:
{
"email": "tt13@testmail.com",
"password": "password",
"device_info": {
"device_id": "1232133",
"notification_token": "123456",
"os_version": "3",
"device_type": "MotoX"
}
}
如果我通过在HTTP Request Body数据中定义它来手动运行它,它将起作用。但是,如果我们尝试从.CSV文件中读取它,则不会接受它。它将tt13@testmail.com替换为tt13%40testmail.com。
我们又如何传递值
"device_info": {
"device_id": "1232133",
"notification_token": "123456",
"os_version": "3",
"device_type": "MotoX"
}
预先感谢您的帮助