Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Implementing OAuth 2.0 Provider using Coldfusion

I need to implement the OAuth 2.0 Provider using Coldfusion. Do you know of any library I could use? Only thing I've found is this, but it's based on the Core 1.0 specification.

What are you thoughts on this? Maybe I should use the Java libraries? Any help will be appreciated.

Thanks,
Lucas

like image 792
Lucas Avatar asked Apr 03 '12 16:04

Lucas


1 Answers

You could use a pre-existing Java provider implementation and use ColdFusion's cfinvoke/cfobject syntax to implement the provider in your ColdFusion application. The oAuth site maintains a list of server/provider implementations by language here. Using this sort of solution might even give you more flexibility in the long run if you have other Java apps that need to provide oAuth provider services.

like image 159
geekmuse Avatar answered Nov 17 '22 11:11

geekmuse