我被迫token
session
。我需要作为代币传递什么?
QBASession *session = [QBASession new];
session.token = @"f23d03bd2341a1f923b7d4c1fbee97af1cd296f2";
token
是否是随机数?
答案 0 :(得分:0)
您可以在QuickBlox仪表板中找到令牌,然后使用以下API调用获取新令牌:
[[QBSession currentSession] startSessionWithDetails:session updateSessionBlock:{
//
// Execute synchronous URL request to retrieve new token from custom server
//
// Until the end of this block all the operations will be paused
QBASession *updatedSession = [QBASession new];
session.token = @"new token";
[[QBSession currentSession] startSessionWithDetails:updatedSession];
//
}];
从官方文档中引用:
也可以使用现有的QuickBlox初始化SDK 令牌