1
我試圖在使用Alamofire的swift中使用firebase API。我在添加標題時遇到問題,並且我的請求說在我的調用中有一個額外的參數。使用Swift 3和alamofire的Firebase API 4
public static func broadcastSyncDo(localId : String){
let headers: HTTPHeaders = [
"Authorization": "key=xxx",
"Content-Type": "application/json"
]
let parameters : [String : String] = [
"to" : "/topics/"+localId,
"content_available" : "1",
"priority" : "high"
]
Alamofire.request(.post, util_Constants.FIREBASE_API, headers : headers, parameters: parameters, encoding: URLEncoding.default)
.responseJSON { response in
print("response : \(response)")
}
}
這是一個實時服務更好地使用它自己的方法 –
@ÖzgürErsil你是什麼意思?我需要從我的設備發送推送通知。如果它是從GCM控制檯發送的,它們將是相同的 – user2363025