## TapPay
### 成功
```
{
"status":0,
"msg":""
}
```
### 失敗
```
{
"status":10003,
"msg":"Card Error"
}
```
## Facebook
### 成功
```
{
"id": "17841405793187218",
"username": "jayposiris"
}
```
### 失敗
```
{
"error": {
"message": "Message describing the error",
"type": "OAuthException",
"code": 190,
"error_subcode": 460,
"error_user_title": "A title",
"error_user_msg": "A message",
"fbtrace_id": "EJplcsCHuLu"
}
}
```
## Google
### 成功
```
{
"occurrencesChanged": integer
}
```
### 失敗
```
{
"error": {
"code": 400,
"message": "API key not valid. Please pass a valid API key.",
"status": "INVALID_ARGUMENT",
"details": [
{
"@type": "type.googleapis.com/google.rpc.ErrorInfo",
"reason": "API_KEY_INVALID",
"domain": "googleapis.com",
"metadata": {
"service": "translate.googleapis.com"
}
}
]
}
}
```
## Shopee
### 成功
```
{
"error": 0,
"error_msg": null,
"data": {
"image_base_filename": "sg-11134004-7rcbw-lsgt39xlbprva0",
"background_color": "#ee4d2d"
}
}
```
### 失敗
```
{
"error": 10002,
"error_msg": null,
"data": null
}
```
## Amazon
### 成功
```
{
"payload": {
"ConfirmedNeedByDate": "2020-04-23",
"ConfirmedFulfillableDate": "2020-04-23"
}
}
```
### 失敗
```
{
"errors": [
{
"message": "Access to requested resource is denied.",
"code": "Unauthorized",
"details": "Access token is missing in the request header."
}
]
}
```