You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Main class to manage the connection settings to the Trade It Execution Management System (EMS). And the account linking and storing of the userToken used for establishing the session
18
+
*/
19
+
@interfaceTradeItConnector : NSObject
20
+
21
+
/**
22
+
* The apiKey is generated by TradeIt and unique to your application and is required for all API requests
23
+
*/
24
+
@propertyNSString * _Nonnull apiKey;
25
+
26
+
/**
27
+
* Environment to send the request to. Default value is TradeItEmsProductionEnv
* Using a successful response from the linkBrokerWithAuthenticationInfo:andCompletionBlock: this method will save basic information to the user preferences, and a UUID pointed to the actual user token which will be stored in the keychain.
* Same as above, but with a custom label. Useful if allowing users to link to more than one login per broker. The default, in the above method, is just the broker name.
* Using a successful response from the updateUserToken:withAuthenticationInfo:andCompletionBlock: this method will update the keychain token for an already linked account.
0 commit comments