2016-07-08 2 views

答えて

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 トークン

関連する問題