Reputation: 53
"You can register more than one callback URL."
is said in Callback URL tooltip.
But there is no example on how to enter multiple URLs.
What is the correct separator?
I've tried ";", "\n".
Upvotes: 2
Views: 540
Reputation: 8574
That's a typo on the tooltip and we will fix it.
Today you can use *
Update Sep 2022
This feature is now available!
Upvotes: 2
Reputation: 2125
As of 1st September 2022 it is possible now to add multiple Callback URLs:
Upvotes: 0
Reputation: 17
(Sorry to post this as an answer but S.O. won't let me comment; brilliant system.)
@Edson posted above that this (as of his answer in February) is not actually possible yet, but would be coming in a couple months. Anyone know if this actually has been fixed/supported? (Not holding my breath...)
Also, is the wildcard the only option? My paths do not all match a simple pattern. e.g.
local.myapp.com
www.myapp.com
staging.myapp.com/stagingDev
staging.myapp.com/stagingQA
I have to say, when I did the exact same thing with Procore, it was so much easier. They have a simple text box (instead of a single line) and you just enter as many entries as you need.
TIA!
Upvotes: 0
Reputation: 3143
Although the tooltip says it's possible, I got confirmation from AutoDesk's support that multiple URLs as in different hostnames is not supported currently. It is supposed to come in the next couple of months though.
If the hostname is only one, you can add *
as a wildcard to support multiple routes and query strings.
Upvotes: 0
Reputation: 85
you want to set the callback URL as
*.myapp.com
and we can use it
dev.myapp.com
test.myapp.com
any.myapp.com
Upvotes: 0