1

I am trying to make API call to Akamai dataStream source from command line. I have headers client_secret ,host ,access_token ,client_token,base url. Akamai developer doc,https://developer.akamai.com/legacy/introduction/Client_Auth.html does not have good example.

Solid example to make API call to Akamai dataStream source form Linux systems would be highly appreciated.

Jhon
  • 39
  • 2
  • 10

1 Answers1

0

You can find clients with authentication already implemented on their website https://developer.akamai.com/legacy/introduction/Open_Source.html

Take a look at egcurl, a curl wrapper handling authentication. Once configured following instructions on that page, you can call DataStream APIs.

Guillaume
  • 12,824
  • 3
  • 40
  • 48
  • I am able to make this call, similar way you mentioned. How ever their online docs are not that much helpful. I used api-kickstart/examples/python/templete_script.py – Jhon Feb 15 '19 at 19:11