Hi Sameer - Yes, using HTTP request.
URL
https://www.reddit.com/api/v1/access_token
Method
POST
Headers (Set Manually)
Authorization: Basic BASE64(CLIENT_ID:CLIENT_SECRET)
User-Agent: script:APPNAME:VERSION (by /u/REDDIT_USERNAME)
Content-Type: application/x-www-form-urlencoded
Accept: application/json
Body (Text, one line)
grant_type=password&username=REDDIT_USERNAME&password=REDDIT_PASSWORD&scope=read
Verify Reddit Identity (generic template)
URL
https://oauth.reddit.com/api/v1/me
Method
GET
Headers (Set Manually)
Authorization: bearer {{ steps["Get Reddit OAuth Token"].json.access_token }}
User-Agent: script:APPNAME:VERSION (by /u/REDDIT_USERNAME)
Accept: application/json
Maybe code action is what I need as I can run a Curl successfully but Lindy cannot authenticate