Has anybody used Cloudinary together with Coldfusion/Railo/Lucee? RestAPI to use?

Hi,

http://cloudinary.com/ to handle image processing and storing looks
interesting.

Has anybody used Cloudinary together with Coldfusion/Railo/Lucee?

Would be the best way to use their RestAPI together with lucee?

Regards
Thorsten

Says it’s a REST API, so I guess using cfhttp?

Mark Drew

  • Sent by typing with my thumbs.> On 20 Jun 2015, at 10:52, @thorsteneilers wrote:

Hi,

http://cloudinary.com/ to handle image processing and storing looks interesting.

Has anybody used Cloudinary together with Coldfusion/Railo/Lucee?

Would be the best way to use their RestAPI together with lucee?

Regards
Thorsten

You received this message because you are subscribed to the Google Groups “Lucee” group.
To unsubscribe from this group and stop receiving emails from it, send an email to lucee+unsubscribe@googlegroups.com.
To post to this group, send email to lucee@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/lucee/5db5a3b2-0e22-4110-bfb4-4e546fb023e9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Thanks at all! When I have some time I will investigate it further. Thorsten

I’m using it with Lucee. I have a component I wrote to do what I need using the REST API via http calls. It’s pretty basic but gets the job done. If I recall correctly the trickiest part was getting the signature right. Actually, yeah that was a real PITA.

I can share some code with you if you want.> On Jun 20, 2015, at 5:52 AM, @thorsteneilers wrote:

Hi,

http://cloudinary.com/ to handle image processing and storing looks interesting.

Has anybody used Cloudinary together with Coldfusion/Railo/Lucee?

Would be the best way to use their RestAPI together with lucee?

Regards
Thorsten


You received this message because you are subscribed to the Google Groups “Lucee” group.
To unsubscribe from this group and stop receiving emails from it, send an email to lucee+unsubscribe@googlegroups.com.
To post to this group, send email to lucee@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/lucee/5db5a3b2-0e22-4110-bfb4-4e546fb023e9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Would be the best way to use their RestAPI together with lucee?

If there is a java client for an API, I usually try that first… and there
is: GitHub - cloudinary/cloudinary_java: Cloudinary Java Client Library

Occasionally you will find that there are a ton of dependencies or that the
java API is harder to use than rolling your own implementation, but it is
often far less work (especially in the long run, I have found) to go with a
Java API client. I am just speaking in general from my experience using
various java api clients for web services, I haven’t used Cloudinary
specifically.On Sat, Jun 20, 2015 at 5:52 AM, <@thorsteneilers> wrote:


Pete Freitag
https://foundeo.com/ http://foundeo.com/ - ColdFusion Consulting &
Products
http://hackmycf.com - CFML Server Security Scanner

With cloudinary now supporting external sources you can use the service
these days without even using the api. We now store the source images in
our own s3 bucket and simply craft url’s pointing directly at the source
image.

e.g source image is:

http://yaffacdn.s3.amazonaws.com/live/photogroup/images/yafPOTYEntry/sourceImage/CD9BC770-6676-11E4-9C3F02A167D272B4/andre_lowkey_3.jpg

Crafted url is:

https://res.cloudinary.com/yaffa-publishing/image/fetch
/fl_keep_iptc,c_fit,h_520
/http%3A%2F%2Fyaffacdn.s3.amazonaws.com%2Flive%2Fphotogroup%2Fimages%2FyafPOTYEntry%2FsourceImage%2FCD9BC770-6676-11E4-9C3F02A167D272B4%2Fandre_lowkey_3.jpg

The image was uploaded direct to s3 without ever going via the web server.
A basic example of that:

Though you can use things like plupload for a better user experience.On Tuesday, June 23, 2015 at 2:03:54 AM UTC+10, thorste...@googlemail.com wrote:

Thanks at all! When I have some time I will investigate it further.
Thorsten

Hey Sean, I wouldn’t mind taking a look at what you did for your component.
Save me some time getting the signature.

Let me know if you still have it around. Do you have a github repo for it?

Thanks,
CurtOn Monday, June 22, 2015 at 9:56:53 AM UTC-5, Sean Daniels wrote:

I’m using it with Lucee. I have a component I wrote to do what I need
using the REST API via http calls. It’s pretty basic but gets the job done.
If I recall correctly the trickiest part was getting the signature right.
Actually, yeah that was a real PITA.

I can share some code with you if you want.

On Jun 20, 2015, at 5:52 AM, thorste...@googlemail.com <javascript:> wrote:

Hi,

http://cloudinary.com/ to handle image processing and storing looks
interesting.

Has anybody used Cloudinary together with Coldfusion/Railo/Lucee?

Would be the best way to use their RestAPI together with lucee?

Regards
Thorsten


You received this message because you are subscribed to the Google
Groups “Lucee” group.
To unsubscribe from this group and stop receiving emails from it, send
an email to lucee+un...@googlegroups.com <javascript:>.
To post to this group, send email to lu...@googlegroups.com
<javascript:>.
To view this discussion on the web visit
https://groups.google.com/d/msgid/lucee/5db5a3b2-0e22-4110-bfb4-4e546fb023e9%40googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

It’s in a private repo ATM but here is a gist of the component:

https://gist.github.com/cfrockstar/a31bbd9192cd28e48fcf

  • Sean> On Nov 10, 2015, at 9:55 AM, Curt Gratz <@Curt_Gratz> wrote:

Hey Sean, I wouldn’t mind taking a look at what you did for your component. Save me some time getting the signature.

Let me know if you still have it around. Do you have a github repo for it?

Thanks,
Curt

On Monday, June 22, 2015 at 9:56:53 AM UTC-5, Sean Daniels wrote:
I’m using it with Lucee. I have a component I wrote to do what I need using the REST API via http calls. It’s pretty basic but gets the job done. If I recall correctly the trickiest part was getting the signature right. Actually, yeah that was a real PITA.

I can share some code with you if you want.

On Jun 20, 2015, at 5:52 AM, thorste...@googlemail.com wrote:

Hi,

http://cloudinary.com/ to handle image processing and storing looks interesting.

Has anybody used Cloudinary together with Coldfusion/Railo/Lucee?

Would be the best way to use their RestAPI together with lucee?

Regards
Thorsten


You received this message because you are subscribed to the Google Groups “Lucee” group.
To unsubscribe from this group and stop receiving emails from it, send an email to lucee+un...@googlegroups.com.
To post to this group, send email to lu...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/lucee/5db5a3b2-0e22-4110-bfb4-4e546fb023e9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Love Lucee? Become a supporter and be part of the Lucee project today! - http://lucee.org/supporters/become-a-supporter.html

You received this message because you are subscribed to the Google Groups “Lucee” group.
To unsubscribe from this group and stop receiving emails from it, send an email to lucee+unsubscribe@googlegroups.com.
To post to this group, send email to lucee@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/lucee/447b4d9e-f1c5-4479-8826-57e92c7855f4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

That helps a ton. Thanks Sean!!!

CurtOn 11/10/15, 9:53 AM, “lucee@googlegroups.com on behalf of Sean Daniels” <lucee@googlegroups.com on behalf of @Sean_Daniels> wrote:

It’s in a private repo ATM but here is a gist of the component:

https://gist.github.com/cfrockstar/a31bbd9192cd28e48fcf

  • Sean

On Nov 10, 2015, at 9:55 AM, Curt Gratz <@Curt_Gratz> wrote:

Hey Sean, I wouldn’t mind taking a look at what you did for your component. Save me some time getting the signature.

Let me know if you still have it around. Do you have a github repo for it?

Thanks,
Curt

On Monday, June 22, 2015 at 9:56:53 AM UTC-5, Sean Daniels wrote:
I’m using it with Lucee. I have a component I wrote to do what I need using the REST API via http calls. It’s pretty basic but gets the job done. If I recall correctly the trickiest part was getting the signature right. Actually, yeah that was a real PITA.

I can share some code with you if you want.

On Jun 20, 2015, at 5:52 AM, thorste...@googlemail.com wrote:

Hi,

http://cloudinary.com/ to handle image processing and storing looks interesting.

Has anybody used Cloudinary together with Coldfusion/Railo/Lucee?

Would be the best way to use their RestAPI together with lucee?

Regards
Thorsten


You received this message because you are subscribed to the Google Groups “Lucee” group.
To unsubscribe from this group and stop receiving emails from it, send an email to lucee+un...@googlegroups.com.
To post to this group, send email to lu...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/lucee/5db5a3b2-0e22-4110-bfb4-4e546fb023e9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Love Lucee? Become a supporter and be part of the Lucee project today! - http://lucee.org/supporters/become-a-supporter.html

You received this message because you are subscribed to the Google Groups “Lucee” group.
To unsubscribe from this group and stop receiving emails from it, send an email to lucee+unsubscribe@googlegroups.com.
To post to this group, send email to lucee@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/lucee/447b4d9e-f1c5-4479-8826-57e92c7855f4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Love Lucee? Become a supporter and be part of the Lucee project today! - http://lucee.org/supporters/become-a-supporter.html

You received this message because you are subscribed to a topic in the Google Groups “Lucee” group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/lucee/rcoj_XrHnco/unsubscribe.
To unsubscribe from this group and all its topics, send an email to lucee+unsubscribe@googlegroups.com.
To post to this group, send email to lucee@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/lucee/00856CB1-4CAB-489E-9EF3-50CA4BF1CC83%40gmail.com.
For more options, visit https://groups.google.com/d/optout.

Hi,

The gist is down, and i would have liked to the a peek too if possible ?

Thank you !Le mardi 10 novembre 2015 10:53:40 UTC-5, Sean Daniels a écrit :

It’s in a private repo ATM but here is a gist of the component:

https://gist.github.com/cfrockstar/a31bbd9192cd28e48fcf

  • Sean

On Nov 10, 2015, at 9:55 AM, Curt Gratz <gra...@compknowhow.com <javascript:>> wrote:

Hey Sean, I wouldn’t mind taking a look at what you did for your
component. Save me some time getting the signature.

Let me know if you still have it around. Do you have a github repo for
it?

Thanks,
Curt

On Monday, June 22, 2015 at 9:56:53 AM UTC-5, Sean Daniels wrote:
I’m using it with Lucee. I have a component I wrote to do what I need
using the REST API via http calls. It’s pretty basic but gets the job done.
If I recall correctly the trickiest part was getting the signature right.
Actually, yeah that was a real PITA.

I can share some code with you if you want.

On Jun 20, 2015, at 5:52 AM, thorste...@googlemail.com wrote:

Hi,

http://cloudinary.com/ to handle image processing and storing looks
interesting.

Has anybody used Cloudinary together with Coldfusion/Railo/Lucee?

Would be the best way to use their RestAPI together with lucee?

Regards
Thorsten


You received this message because you are subscribed to the Google
Groups “Lucee” group.
To unsubscribe from this group and stop receiving emails from it, send
an email to lucee+un...@googlegroups.com.
To post to this group, send email to lu...@googlegroups.com.
To view this discussion on the web visit
https://groups.google.com/d/msgid/lucee/5db5a3b2-0e22-4110-bfb4-4e546fb023e9%40googlegroups.com.

For more options, visit https://groups.google.com/d/optout.


Love Lucee? Become a supporter and be part of the Lucee project today! -
http://lucee.org/supporters/become-a-supporter.html

You received this message because you are subscribed to the Google
Groups “Lucee” group.
To unsubscribe from this group and stop receiving emails from it, send
an email to lucee+un...@googlegroups.com <javascript:>.
To post to this group, send email to lu...@googlegroups.com
<javascript:>.
To view this discussion on the web visit
https://groups.google.com/d/msgid/lucee/447b4d9e-f1c5-4479-8826-57e92c7855f4%40googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

I changed my gut username so new address for the gist:

:slight_smile: hope that helps> On Aug 20, 2016, at 3:17 AM, Kim Bélanger <@Kim_Belanger> wrote:

Hi,

The gist is down, and i would have liked to the a peek too if possible ?

Thank you !

Le mardi 10 novembre 2015 10:53:40 UTC-5, Sean Daniels a écrit :
It’s in a private repo ATM but here is a gist of the component:

https://gist.github.com/cfrockstar/a31bbd9192cd28e48fcf

  • Sean

On Nov 10, 2015, at 9:55 AM, Curt Gratz gra...@compknowhow.com wrote:

Hey Sean, I wouldn’t mind taking a look at what you did for your component. Save me some time getting the signature.

Let me know if you still have it around. Do you have a github repo for it?

Thanks,
Curt

On Monday, June 22, 2015 at 9:56:53 AM UTC-5, Sean Daniels wrote:
I’m using it with Lucee. I have a component I wrote to do what I need using the REST API via http calls. It’s pretty basic but gets the job done. If I recall correctly the trickiest part was getting the signature right. Actually, yeah that was a real PITA.

I can share some code with you if you want.

On Jun 20, 2015, at 5:52 AM, thorste...@googlemail.com wrote:

Hi,

http://cloudinary.com/ to handle image processing and storing looks interesting.

Has anybody used Cloudinary together with Coldfusion/Railo/Lucee?

Would be the best way to use their RestAPI together with lucee?

Regards
Thorsten


You received this message because you are subscribed to the Google Groups “Lucee” group.
To unsubscribe from this group and stop receiving emails from it, send an email to lucee+un...@googlegroups.com.
To post to this group, send email to lu...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/lucee/5db5a3b2-0e22-4110-bfb4-4e546fb023e9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Love Lucee? Become a supporter and be part of the Lucee project today! - http://lucee.org/supporters/become-a-supporter.html

You received this message because you are subscribed to the Google Groups “Lucee” group.
To unsubscribe from this group and stop receiving emails from it, send an email to lucee+un...@googlegroups.com.
To post to this group, send email to lu...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/lucee/447b4d9e-f1c5-4479-8826-57e92c7855f4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Get 10% off of the regular price for this years CFCamp in Munich, Germany (Oct. 20th & 21st) with the Lucee discount code Lucee@cfcamp. 189€ instead of 210€. Visit CFCamp 2016

You received this message because you are subscribed to the Google Groups “Lucee” group.
To unsubscribe from this group and stop receiving emails from it, send an email to lucee+unsubscribe@googlegroups.com.
To post to this group, send email to lucee@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/lucee/80e54c28-456e-4baf-ac6a-3b8473122282%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Oh it sure is/will. Thanks again !Le lundi 22 août 2016 10:23:58 UTC-4, Sean Daniels a écrit :

I changed my gut username so new address for the gist:

Cloudinary.cfc · GitHub

:slight_smile: hope that helps