Cloud Functions overview
- Print
- PDF
Cloud Functions overview
- Print
- PDF
Article Summary
Share feedback
Thanks for sharing your feedback!
Overview
Cloud Functions is a service that allows easy execution of code by creating code and registering it as an action. You can easily execute the business logic you want without the burden of managing servers. To learn how to use Cloud Functions API, please see the guide below.
Common settings
API URL
Region | API URL | Platform |
---|---|---|
Korea | https://cloudfunctions.apigw.ntruss.com/api/v2 | Classic, VPC |
Singapore | https://sg-cloudfunctions.apigw.ntruss.com/api/v2 | VPC |
Japan | https://jp-cloudfunctions.apigw.ntruss.com/api/v2 | VPC |
Request headers
Item | Requirement status | Description |
---|---|---|
Content-Type | Yes | Specifies the request body content type as application/json (POST) |
x-ncp-apigw-timestamp | Yes | This is the number of milliseconds that have elapsed since January 1, 1970 00:00:00 (UTC). If the time difference compared to the API Gateway server is 5 minutes or more, then the request is considered invalid. |
x-ncp-iam-access-key | Yes | This is the access key ID issued by the portal or Sub Account |
x-ncp-apigw-signature-v2 | Yes | A signature that encrypts the body of the example above with a secret key mapped to the access key ID HmacSHA256 is used as the HMAC encryption algorithm |
Go to the creation guide of NAVER Cloud Platform authentication key and signature
Error response format
http status code 400 - 500
{
"error": {
"errorCode": "string",
"message": "string",
"details": "string"
}
}
Was this article helpful?