我需要在QuickBlox中传递QBASession的session.token

时间:2016-07-08 11:05:44

标签: ios quickblox

我被迫token session。我需要作为代币传递什么?

QBASession *session = [QBASession new];
session.token = @"f23d03bd2341a1f923b7d4c1fbee97af1cd296f2";

token是否是随机数?

1 个答案:

答案 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   令牌