Hello , i am a very newbie I stopped programming 20 years ago and i really need some help i am willing to pay. Can you teach me how to add Uber Direct to my restaurant webstite with woocommerce I will pay for the service. I already have the developer account and all the credentials. I tried to use Postman to get OAuth using curl and follow the directions, but I still can’t figure it out. Uber Direct
I won’t be able to help you directly with Woocommerce/Uber integration but there is a “Run in Postman” collection on the Uber Direct website.
Using the page provided, you will also see the cURL commands that would be useful to get a token from Uber Direct to use in other calls.
curl --request POST 'https://auth.uber.com/oauth/v2/token' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data-urlencode 'client_id=<your_client_id>' \
--data-urlencode 'client_secret=<your_client_secret>' \
--data-urlencode 'grant_type=client_credentials' \
--data-urlencode 'scope=eats.deliveries'
You would obtain your client_id
and client_secret
from the Uber Developer page.
thank you , i already have that information how hard will be for doing it myself if i have some computer knowledge to use postman for first time, and integrate the website to uber direct