Sample code for 30+ languages & platforms
Swift

ETrade OAuth1 Authorization (3-legged) Step 2

See more ETrade Examples

Demonstrates the final step in 3-legged OAuth1 authorization for the ETrade REST API. Example uses the OAuth1 verifier code that was copy-and-pasted from the browser in the 1st step. The end result of this final OAuth1 step is an access token that can be used to make ETrade REST API calls.

See https://apisb.etrade.com/docs/api/authorization/get_access_token.html

Chilkat Swift Downloads

Swift

func chilkatTest() {
    var success: Bool = false

    // This requires the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    var consumerKey: String? = "ETRADE_CONSUMER_KEY"
    var consumerSecret: String? = "ETRADE_CONSUMER_SECRET"

    var requestTokenUrl: String? = "https://apisb.etrade.com/oauth/request_token"
    var authorizeUrl: String? = "https://us.etrade.com/e/t/etws/authorize"
    var accessTokenUrl: String? = "https://apisb.etrade.com/oauth/access_token"

    let http = CkoHttp()!
    success = true

    http.oAuth1 = true
    http.oAuthConsumerKey = consumerKey
    http.oAuthConsumerSecret = consumerSecret
    http.oAuthCallback = "oob"

    let jsonRequestToken = CkoJsonObject()!
    success = jsonRequestToken.loadFile(path: "qa_data/tokens/etrade_request_token.json")
    var requestToken: String? = jsonRequestToken.string(of: "oauth_token")
    var requestTokenSecret: String? = jsonRequestToken.string(of: "oauth_token_secret")

    // ------------------------------------------------------------------------------
    // Exchange the OAuth Request Token for an OAuth Access Token.

    http.oAuthToken = requestToken
    http.oAuthTokenSecret = requestTokenSecret

    // This is the verifier that was interactively copy-and-pasted from the browser back to our app.
    http.oAuthVerifier = "NJ07S"

    // Use the explicit string "INCLUDE_OAUTH_TOKEN" to tell Chilkat to include the "oauth_token" param in the Authorization header field
    http.uncommonOptions = "INCLUDE_OAUTH_TOKEN"

    let resp = CkoHttpResponse()!
    success = http.httpNoBody(verb: "GET", url: accessTokenUrl, response: resp)
    if success == false {
        print("\(http.lastErrorText!)")
        return
    }

    // Make sure a successful response was received.
    if resp.statusCode.intValue != 200 {
        print("\(resp.statusLine!)")
        print("\(resp.header!)")
        print("\(resp.bodyStr!)")
        return
    }

    // If successful, the resp.BodyStr contains something like this:
    // oauth_token=85123455-fF41296Bi3daM8eCo9Y5vZabcdxXpRv864plYPOjr&oauth_token_secret=afiYJOgabcdSfGae7BDvJVVTwys8fUGpra5guZxbmFBZo
    print("\(resp.bodyStr!)")

    let hashTab = CkoHashtable()!
    hashTab.addQueryParams(queryParams: resp.bodyStr)

    var accessToken: String? = hashTab.lookupStr(key: "oauth_token")
    var accessTokenSecret: String? = hashTab.lookupStr(key: "oauth_token_secret")

    // The access token + secret is what should be saved and used for
    // subsequent REST API calls.
    print("Access Token = \(accessToken!)")
    print("Access Token Secret = \(accessTokenSecret!)")

    // Save this access token for future calls.
    // Just in case we need user_id and screen_name, save those also..
    let json = CkoJsonObject()!
    json.appendString(name: "oauth_token", value: accessToken)
    json.appendString(name: "oauth_token_secret", value: accessTokenSecret)

    let fac = CkoFileAccess()!
    fac.writeEntireTextFile(path: "qa_data/tokens/etrade.json", fileData: json.emit(), charset: "utf-8", includePreamble: false)

    print("Success.")

}