Sample code for 30+ languages & platforms
Classic ASP Requires Chilkat v11.0.0+

Upload Media to Twitter

Demonstrates uploading image or video files to Twitter. After uploading, the media_id can be used to attach the uploaded media to a tweet.

This example is deprecated and no longer valid.

Chilkat Classic ASP Downloads

Classic ASP
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<%
success = 0

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

'  Assume we've previously obtained an access token and saved it to a JSON file..
set jsonToken = Server.CreateObject("Chilkat.JsonObject")
success = jsonToken.LoadFile("qa_data/tokens/twitter.json")

set http = Server.CreateObject("Chilkat.Http")

'  Provide the OAuth 1.0a credentials:
http.OAuth1 = 1
http.OAuthConsumerKey = "TWITTER_CONSUMER_KEY"
http.OAuthConsumerSecret = "TWITTER_CONSUMER_SECRET"
http.OAuthToken = jsonToken.StringOf("oauth_token")
http.OAuthTokenSecret = jsonToken.StringOf("oauth_token_secret")

set req = Server.CreateObject("Chilkat.HttpRequest")
req.HttpVerb = "POST"
req.ContentType = "multipart/form-data"
req.Path = "/1.1/media/upload.json"

req.AddHeader "Expect","100-continue"

'  Add a JPEG image file to the upload.
set fac = Server.CreateObject("Chilkat.FileAccess")

jpgBytes = fac.ReadEntireFile("qa_data/jpg/starfish.jpg")
success = req.AddBytesForUpload("media","starfish.jpg",jpgBytes)

set resp = Server.CreateObject("Chilkat.HttpResponse")
success = http.HttpSReq("upload.twitter.com",443,1,req,resp)
If (success = 0) Then
    Response.Write "<pre>" & Server.HTMLEncode( http.LastErrorText) & "</pre>"
    Response.End
End If

set jsonResponse = Server.CreateObject("Chilkat.JsonObject")
jsonResponse.EmitCompact = 0
success = jsonResponse.Load(resp.BodyStr)

If (resp.StatusCode <> 200) Then
    Response.Write "<pre>" & Server.HTMLEncode( jsonResponse.Emit()) & "</pre>"
    Response.End
End If

'  Show the successful response:
Response.Write "<pre>" & Server.HTMLEncode( jsonResponse.Emit()) & "</pre>"
Response.Write "<pre>" & Server.HTMLEncode( "Success.") & "</pre>"

'  A successful JSON response looks like this:

'  	{
'  	  "media_id": 793137045996646400,
'  	  "media_id_string": "793137045996646400",
'  	  "size": 6229,
'  	  "expires_after_secs": 86400,
'  	  "image": {
'  	    "image_type": "image\/jpeg",
'  	    "w": 120,
'  	    "h": 120
'  	  }
'  	}
'  

'  Get the information from the JSON:
Response.Write "<pre>" & Server.HTMLEncode( "media_id_string = " & jsonResponse.StringOf("media_id_string")) & "</pre>"
Response.Write "<pre>" & Server.HTMLEncode( "size = " & jsonResponse.IntOf("size")) & "</pre>"
Response.Write "<pre>" & Server.HTMLEncode( "image_type = " & jsonResponse.StringOf("image.image_type")) & "</pre>"
Response.Write "<pre>" & Server.HTMLEncode( "height/width = " & jsonResponse.IntOf("image.w") & "," & jsonResponse.IntOf("image.h")) & "</pre>"

%>
</body>
</html>