VPC REST API #21
Answered
by
mattias-kindborg-at-work
samueldion
asked this question in
General
-
Hello all, Just a general question here. Can the API be created and functional just as well using a REST API within a VPC. What would be the easiest way to go about it to make that edit in AWS? I have everything working with the HTTP API and want to make the switch. Thank you, |
Beta Was this translation helpful? Give feedback.
Answered by
mattias-kindborg-at-work
May 20, 2023
Replies: 1 comment 7 replies
-
Hi @samueldion! To frame the question, are we talking about sending images to S3 or telemetry to AWS IoT Core? |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can use the following properties in Postman to simulate an Axis camera sending an image:
POST
<url>
accessToken
:<access token>
Content-Disposition
:attachment; filename="<filename>"
where
<url>
is the recipient,<access token>
is the access token andfilename
is the name of the image you are in the process of sending. You can also follow along in the code to see what the receiving function expects from the request.