Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Postman is used by developers to easily send API request and it is a great tool for testing used by many to test their API request responses. Postman makes it easy to automate test and create an organized workspace for you to test your API. Through their desktop client you can send any type of http request which you may find useful when wanting to test events and queries on a pico.

For more information: https://www.postman.com/

...

  1. click on the “Body“ tab

  2. select the “raw“ bullet

  3. choose JSON as the datatype

...

<protocol>://<host>:<port>/sky/cloud/<eci>/<rid>/<function>

For me, the protocol is http, the host is localhost, the port is 8080, my eci is KZv4wR1NzmdPxCCS9oxw7i, the rid is uta_time, and the function is dayOfWeek. Our url looks likeIn this example we will be using the following for the different components:

protocol: http

host: localhost

port: 8080

eci: KZv4wR1NzmdPxCCS9oxw7i

rid: uta_time

function: dayOfWeek

Our url should look like this:

http://localhost:8080/sky/cloud/KZv4wR1NzmdPxCCS9oxw7i/uta_time/dayOfWeek

...