Avatar of Medrise
Medrise
 asked on

ColdFusion and Twitter OAuth

I'm current writing a script that will get any new post from my forum and post it to our Twitter account. I had this script working before, but since Twitter moved to OAuth I need some help.

I'm using the following code

<cfset TwitterConsumerKey = "xxxxx">
<cfset TwitterConsumerSecret = "xxxx">
<cfset StoredAccessToken = "xxxxx">
<cfset StoredAccessSecret = "xxxx">

<cfset Twitter = createObject("java", "twitter4j.Twitter")>
<cfset Twitter.setOAuthConsumer(TwitterConsumerKey,TwitterConsumerSecret)>
<cfset Twitter.setOAuthAccessToken(StoredAccessToken,StoredAccessSecret)>
<cfset Twitter.updateStatus("My first custom Twitter update! Thanks @RobOBrien!")>

Open in new window


Now if I use this code it does work. I don't see the difference since the StoredAccessToken, and StoredAccessSecret  is always the same. But this code now the user need to Accept the application.

<cfset Twitter = createObject("java", "twitter4j.Twitter")>
<cfset Twitter.setOAuthConsumer(TwitterConsumerKey,TwitterConsumerSecret)>
<cfif structKeyExists(url,'oauth_token') IS FALSE>
<!--- // 2. Authorize --->
	<cfset RequestToken = Twitter.getOAuthRequestToken()>
	<cfset Session.oAuthRequestToken = RequestToken.getToken()>
	<cfset Session.oAuthRequestTokenSecret = RequestToken.getTokenSecret()>
	<cflocation url="#RequestToken.getAuthorizationURL()#" addtoken="No">	
<cfelse>
	<!--- // 3. Authenticate // --->
	<cfset AccessToken = Twitter.getOAuthAccessToken(Session.oAuthRequestToken,Session.oAuthRequestTokenSecret)>
	<cfset session.StoredAccessToken = AccessToken.getToken()>
	<cfset session.StoredAccessSecret = AccessToken.getTokenSecret()>
    <cfset Twitter.setOAuthAccessToken(Session.StoredAccessToken,Session.StoredAccessSecret)>
	<cfset Twitter.updateStatus("My first custom Twitter update! Thanks @RobOBrien!")>
    <cfdump var="#session#">    
</cfif>

Open in new window

ColdFusion Language

Avatar of undefined
Last Comment
Kevin Cross

8/22/2022 - Mon
ASKER CERTIFIED SOLUTION
Kevin Cross

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
Medrise

ASKER
Kevin... you are correct.. they problem is with the session object... When I store the results in the session it works... but the problem is that my session will expire every 20 minutes... is it possible to store that permanently in the server?
Kevin Cross

Try storing it at the Application level.
Medrise

ASKER
How can I do that?

All of life is about relationships, and EE has made a viirtual community a real community. It lifts everyone's boat
William Peck
Kevin Cross

These are variables you access as Application.VariableName similar to Session.VariableName.  I am a bit of an old school ColdFusion developer (I need to get up-to-date as I miss CFML), so I would put them in the Application.CFM file.

http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=appFramework_16.html

However, it would appear that you need to use Application.CFC for newer versions of ColdFusion.

http://help.adobe.com/en_US/ColdFusion/9.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-750b.html

Hope that helps!
Medrise

ASKER
Thanks... that helped... :D
Kevin Cross

And this is probably a better reference for CF 9.x or higher:
http://help.adobe.com/en_US/ColdFusion/9.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-7d48.html

It shows using the onApplicationStart function of Application.CFC.  You will see in the code example that they set (at the start of the application) the values of two application scoped variables.

"Application.availableResources=0;
Application.counter1=1;"

You can reference those variables later on as #Application.availableResources# like you would your session variables.
⚡ FREE TRIAL OFFER
Try out a week of full access for free.
Find out why thousands trust the EE community with their toughest problems.