BackendlessRequest.get

Hi,
I am trying to get BackendlessRequest.get to work but always get the following error.

Any ideas what I am doing wrong?

regards

Hello @Kurt_Stoller

BackendlessRequest is not defined and is not required either, that’s why you get this error.

I assume you are going to use built-in Request from the JS-SDK for that try this one:

Backendless.Request.get(...)

Regards, Vlad

Thank you,
No error message any more but still not result… The log always shows ‘undefined’…

regards

try to add async before execute(req){ and await before Backendless.Request

Thank you! Its working now.