使用方法[FIRInstanceID tokenWithAuthorizedEntity:scope:options:handler]
我不太确定参数的要求是什么?什么是授权实体和 Action ?我也将苹果的APNS token 传递给该方法吗?
最佳答案
例子:
if (![[FIRInstanceID instanceID] token]) {
[[FIRInstanceID instanceID] tokenWithAuthorizedEntity:_gcmSenderId scope:kFIRInstanceIDScopeFirebaseMessaging options:_registrationOptions handler:^(NSString * _Nullable token, NSError * _Nullable error) {
// Fetch the token or error
}];
}
关于ios - Firebase刷新 token ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38444409/