Classic ASP
Classic ASP
Refresh a Constant Contact OAuth2 Access Token
See more Constant Contact Examples
Refreshes a Constant Contact OAuth2 access token. When an access token expires, HTTPS requests will receive a 401 status response indicating failure. When that happens, your application can run this code to refresh the access token, and then retry the request using the new access token. Refreshing an access token does not need user interaction (i.e. does not need to display a browser to have the user interactive authorize access).Chilkat Classic ASP Downloads
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<%
success = 0
' This example requires the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.
' It is assumed we previously obtained an OAuth2 access token.
' This example loads the JSON access token file
' saved by this example: Get Constant Contact OAuth2 Access Token
set jsonToken = Server.CreateObject("Chilkat.JsonObject")
success = jsonToken.LoadFile("qa_data/tokens/constantContact.json")
If (success <> 1) Then
Response.Write "<pre>" & Server.HTMLEncode( "Failed to load constantContact.json") & "</pre>"
Response.End
End If
' The access token JSON looks like this:
' {
' "access_token": "aEr4czHReESHUGcc2LRknzsMxUbW",
' "refresh_token": "s2qH27ikM7r3Ia0LrZGDOIgKw0bubUotBdJ7fTtc7y",
' "token_type": "Bearer"
' }
set oauth2 = Server.CreateObject("Chilkat.OAuth2")
oauth2.VerboseLogging = 1
oauth2.TokenEndpoint = "https://idfed.constantcontact.com/as/token.oauth2"
oauth2.UseBasicAuth = 1
oauth2.UncommonOptions = "OAUTH2_REFRESH_NO_SCOPE"
' Replace these with actual values.
oauth2.ClientId = "CLIENT_KEY"
oauth2.ClientSecret = "CLIENT_SECRET"
' Get the "refresh_token"
oauth2.RefreshToken = jsonToken.StringOf("refresh_token")
Response.Write "<pre>" & Server.HTMLEncode( "Existing refresh_token: " & oauth2.RefreshToken) & "</pre>"
' Send the HTTP POST to refresh the access token..
success = oauth2.RefreshAccessToken()
If (success <> 1) Then
Response.Write "<pre>" & Server.HTMLEncode( oauth2.LastErrorText) & "</pre>"
Response.End
End If
success = jsonToken.UpdateString("access_token",oauth2.AccessToken)
success = jsonToken.UpdateString("refresh_token",oauth2.RefreshToken)
' Save the new JSON access token response to a file.
set sbJson = Server.CreateObject("Chilkat.StringBuilder")
jsonToken.EmitCompact = 0
success = jsonToken.EmitSb(sbJson)
success = sbJson.WriteFile("qa_data/tokens/constantContact.json","utf-8",0)
Response.Write "<pre>" & Server.HTMLEncode( "OAuth2 token refreshed!") & "</pre>"
Response.Write "<pre>" & Server.HTMLEncode( "New Access Token = " & oauth2.AccessToken) & "</pre>"
Response.Write "<pre>" & Server.HTMLEncode( "New refresh_token: " & oauth2.RefreshToken) & "</pre>"
%>
</body>
</html>