我一直在尝试使用splitwise API(https://secure.splitwise.com/api/v3.0/create_expense)从我的应用程序中按拆分创建条目并进行费用管理。

身份验证:OAuth1.0

请求:

API: create_expense
request body:
{
 payment:false,
 cost: 100.00,
 description:”test”,
 users__0__user_id: current user id,
 users__0__paid_share:100.00,
 users__0__owed_share:50.00,
 users__1__user_id:friend user id,
 users__1__paid_share: 0.00,
 users__1__owed_share:50.00
}


响应:

创建成功调用的查询,得到响应200。但是费用未反映在Splitwise中。

最佳答案

Splitwise API服务端可能存在一些验证错误。在这种情况下,响应为200 OK,但响应正文包含error

请参阅Splitwise API文档错误。 https://dev.splitwise.com/#errors

09-30 22:02