I'm having an issue with position forwarding. My app is receiving a GET rather than the POST I would expect.
I'm running version 6.12.2 on linux.
Here is my traccar.xml:
<entry key='forward.enable'>true</entry>
<entry key='forward.url'>https://my.app.azurewebsites.net/api/traccar/webhook</entry>
<entry key='forward.json'>true</entry>
My app is handling POST as expected when I test it, but when a position gets forwarded I'm seeing 405 method not allowed because it's receiving a GET. Any ideas?
Have you checked against the configuration documentation?
My apologies. I found incorrect examples in a web search and did not verify against the documentation. Lesson learned, issue solved.
I'm having an issue with position forwarding. My app is receiving a GET rather than the POST I would expect.
I'm running version 6.12.2 on linux.
Here is my traccar.xml:
<entry key='forward.enable'>true</entry> <entry key='forward.url'>https://my.app.azurewebsites.net/api/traccar/webhook</entry> <entry key='forward.json'>true</entry>My app is handling POST as expected when I test it, but when a position gets forwarded I'm seeing 405 method not allowed because it's receiving a GET. Any ideas?