Superclass: |
|
Version: |
|
Declared In: |
|
Introduction
This interface encapsulates success information from an AIMobileLib API call.
Properties
- api
The API throwing the error. It takes values from API.
- result
-
The result object retuned from the API on success. The API result can be null, a dictionary, or a string depending upon which API created the APIResult.
The API throwing the error. It takes values from API.
The result object retuned from the API on success. The API result can be null, a dictionary, or a string depending upon which API created the APIResult.
@property(retain) id result;
Discussion
SDK passes following result to the application:
authorizeUserForScopes:delegate: : This API passes nil as the result to the delegate.
getAccessTokenForScopes:withOverrideParams:delegate: : This API passes an access token as an NSString object to the delegate.
clearAuthorizationState: : This API passes nil as the result to the delegate.
getProfile: : This API passes profile data in an NSDictionary object to the delegate. See the API description for information on the key:value pairs expected in profile dictionary.
Last Updated: Monday, May 27, 2013
|