1
0
mirror of synced 2024-11-25 14:26:09 +03:00

Expose error_subcode property for errors

This commit is contained in:
Pranas Kiziela 2019-10-14 10:58:59 +03:00
parent 4a255a50c5
commit 492438f895

View File

@ -68,10 +68,11 @@ type QueryResponse struct {
// QueryError is representing an error sent back by Facebook // QueryError is representing an error sent back by Facebook
type QueryError struct { type QueryError struct {
Message string `json:"message"` Message string `json:"message"`
Type string `json:"type"` Type string `json:"type"`
Code int `json:"code"` Code int `json:"code"`
FBTraceID string `json:"fbtrace_id"` ErrorSubcode int `json:"error_subcode"`
FBTraceID string `json:"fbtrace_id"`
} }
// QueryError implements error // QueryError implements error