使用者授權回調介面類。
public interface IUserAuthCallbackonSuccess
public void onSuccess(String authCode, List<String> authSuccessScopes, Map<String, String> authErrorScopes)授權成功回調。
Parameters | |
authCode | String:authCode。 |
authSuccessScopes | List<String>:授權成功的scope列表。 |
authErrorScopes | Map<String, String>:授權失敗scope列表,key是scope,value是錯誤碼。 |
onFailed
public void onFailed(Map<String, String> authErrorScopes)授權失敗回調。
Parameters | |
authErrorScopes | Map<String, String>:授權失敗scope列表,key是scope,value是錯誤碼。 |