Server-side actions plugins. Help needed

I found the answer for the 1st point. I Missed Mishav’s point that context.request that is provided by plugin can be operated in synchronous mode. So if I want to return body I need to do

response = context.request(‘http://www.google.com’); // or context.request(options) for complex http calls
response.body

2 Likes