Chain Azure Functions together using input and output bindings ERROR 404
Brian Senecal
0
Reputation points
I am working through Chain Azure Functions together using input and output bindings and I follow the directions, changing the JSON as indicated here:
Here is my JSON:
{
"bindings": [
{
"authLevel": "function",
"type": "httpTrigger",
"direction": "in",
"name": "Request",
"methods": [
"get",
"post"
]
},
{
"type": "http",
"direction": "out",
"name": "Response"
},
{
"name": "bookmark",
"direction": "in",
"type": "cosmosDB",
"connectionStringSetting": "trigger-lesson-db_DOCUMENTDB",
"databaseName": "func-io-learn-db",
"collectionName": "Bookmarks",
"id": "{id}",
"partitionKey": "{id}"
},
{
"name": "bookmark",
"direction": "out",
"type": "cosmosDB",
"connectionStringSetting": "trigger-lesson-db_DOCUMENTDB",
"databaseName": "func-io-learn-db",
"collectionName": "Bookmarks",
"partitionKey": "{id}"
},
{
"name": "newmessage",
"direction": "out",
"type": "queue",
"connection": "learndd2cc32b9cda489e55_STORAGE",
"queueName": "bookmarks-post-process"
}
]
}
I keep getting a 404 error, and after many attempts, the FileSystem logs don't show anything.
Can someone please direct me to where the problem is??
Sign in to answer