| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Exemplo de uma API Serverless usando Serverless Framework e deploy no AWS utilizando os serviços:
serverless config credentials \ --provider aws \ --key apiKeyAqui \ --secret chaveSecretaAqui \ --profile my-aws-profile
Para fazer deploy e manter o stage padrão: dev serverless deploy --aws-profile my-aws-profile
Para fazer deploy e alterar o stage padrão: dev para prod serverless deploy --aws-profile my-aws-profile --stage prod
O resultado do comando será algo parecido com
.... Serverless: Stack update finished... Service Information service: api-python-hello-world stage: dev region: us-east-1 stack: api-python-hello-world-dev resources: 16 api keys: myKey: CCJZsdfgzrbxi0shwR8e2Yasdfaz0bOG6A5hlJc7Ui endpoints: GET - https://aaa.execute-api.aa-aa-1.amazonaws.com/dev/api/python/hello-world functions: hello: api-python-hello-world-dev-hello layers: None
Chave da API se encontra na reposta
api keys: myKey: CCJZsdfgzrbxi0shwR8e2Yasdfaz0bOG6A5hlJc7Ui
Chave da API deve ser passado no header da requisição:
x-api-key: CCJZsdfgzrbxi0shwR8e2Yasdfaz0bOG6A5hlJc7Ui
serverless remove --aws-profile my-aws-profile --stage dev
curl --request GET \ --url https://7cq8ind2me.execute-api.us-east-1.amazonaws.com/dev/api/python/hello-world \ --header 'x-api-key: CCJZsdfgzrbxi0shwR8e2Yasdfaz0bOG6A5hlJc7Ui'
curl -X GET -H "x-api-key: CCJZsdfgzrbxi0shwR8e2Yasdfaz0bOG6A5hlJc7Ui" \ https://8nncm9w4p5.execute-api.us-east-1.amazonaws.com/dev/contact
curl -X POST
-H "x-api-key: CCJZsdfgzrbxi0shwR8e2Yasdfaz0bOG6A5hlJc7Ui" \
-H "Content-Type: application/json" \
-d '{"name":"Lina Nathan", "phone":"90000-0000"}' \
https://8nncm9w4p5.execute-api.us-east-1.amazonaws.com/dev/contact
curl -X DELETE
-H "x-api-key: CCJZsdfgzrbxi0shwR8e2Yasdfaz0bOG6A5hlJc7Ui" \
-H "Content-Type: application/json" \
-d '{"id":"29a64dab-b77a-4b5f-9e82-222950c3b5ff"}' \
https://8nncm9w4p5.execute-api.us-east-1.amazonaws.com/dev/contact
| Back | FazBrowse Home | New Git URL |