Skip to main content

Generating Signed Delivery URL in NodeJS

Comments

3 comments

  • Wissam Khalili

    Hi there,

    Could you please share the piece of code that you have used and the result that you get?

    Thanks,

    Wissam

     

     

    0
  • Bitbarter

    Hi Wissam,

    I was able to figure out what the problem is.

    While generating the URL, I didn't set the type option.

    This was not working:

    CloudinaryV2
    .url(public_id, {sign_url: true});


    This works:

    CloudinaryV2.url(public_id, {sign_url: true, type: 'authenticated'});




    0
  • Wissam Khalili

    Thanks for the update, I'm glad it's working for you now.

    0

Post is closed for comments.