Skip to main content

Direct signed upload with manual generated signature

Comments

2 comments

  • Stephen Doyle

    Hi Lina,

    It looks like you're using new Date().getTime() which will return milliseconds, but the values you provide should be in seconds.

    Can you try it with seconds and see if it works? perhaps something like:

    const timestamp =  Math.round(new Date() / 1000)

    If it still doesn't work, can you provide some information I can use to find these calls in our logs and see what the issue may be? 

    Thanks,
    Stephen

    0
  • Lina Margarita

    Thank you so much. That was my mistake. OMG

    Thanks again!

    1

Post is closed for comments.