How to specify multiple Callback URLs for Autodesk Forge App?

Viewed 302

"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".

enter image description here

6 Answers

That's a typo on the tooltip and we will fix it.

Today you can use *

Update Sep 2022

This feature is now available!

It may be worth trying without a separator.

screenshot

you want to set the callback URL as

*.myapp.com

and we can use it

dev.myapp.com
test.myapp.com
any.myapp.com

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.

(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!

As of 1st September 2022 it is possible now to add multiple Callback URLs: enter image description here

Related