I'm new with Azure and I dont know how to configurate Azure run in Intellij project configuration.
At this moment I try to debug my first http-trigger function (in Python) that I run in the shell and put the debugger points.
The problem: executed function doesnt neither return its response string nor stop at debugger point
Here is the screenshot where you may see the localhost:7071
successfully started, but when I try to trigger my function with http://localhost:7071/api/first-http-trigger?name=sdaf
it doesnt respond: Hello, {name}. This HTTP triggered function executed successfully.
and doesnt stop the debugger
Also I've created azure config for Intellij but it doesnt run at all
UPDATE:
function.json
{
"scriptFile": "__init__.py",
"bindings": [
{
"authLevel": "anonymous",
"type": "httpTrigger",
"direction": "in",
"name": "req",
"methods": [
"get",
"post"
]
},
{
"type": "http",
"direction": "out",
"name": "$return"
}
]
}
Also I've fixed my problem with localhost api successfully http://localhost:7071/api/first-http-trigger?name=sdaf.
The problem was the func init was initiated in root directory but the func new was done in child one. So the configs were incorrect.
I've solved it just starting from the very start and did all commands in one directory (func init, func new, func start)
But there still a problem is left: the debugging points dont work and I cannot configure azure start in Idea configurations
func init
,func new
,func start
, this three things is essentially console commands. It can only make sure you can run the function app.For Intellij IDEA and VS Code, the key is the extensions, or to say the plugins. First you need to get support for this language. And then you need a plugin to debug. For VS Code, it is 'azure function extension'. And for intellij IDEA, it is 'Azure Toolkit for Intellij'. 'azure function extension' of VS Code can support multiple language. But for 'Azure Toolkit for Intellij', unfortunately, it is focusing on Java(If you want to use it to debug the function app, you will find you can not select any module. This is because it didn't think your function app is a java project.)
It is recommended that you use the VS Code to develop function apps locally so that you can get debug support for function apps in all languages.(If you use VS Code, you just need two things, one is python plugin and another is azure function extension plugin, and then you can debug with no problem.)