Hi, is it possible to open the application using an http post and use that data in the application as parameters? I get a “405 not allowed” message trying to do this.
Hi @Remco_Dekkers,
To put it simply: No
The HTTP response “405 Not allowed” means that the server knows what is being accessed, but it’s not allowed for the requested method, in this case POST. So there is no endpoint that handles a POST request on the URL of the application.
That said, I don’t know what you want to do with the data, but you could use webhooks instead. Webhooks don’t have access to the apps directly, but they can use all data sources. So you could use the webhook to insert external data into a database, which in turn can be used by the app.
Or, depending on the amount of data, you could also use query parameters. That’s the part in URLs after the ?, e.g. in www.google.com/search?q=ui+bakery the query param would be {q: "ui bakery"}. That could be used directly in the app with {{ activeRoute.queryParams }}.
If that doesn’t work, explain in more detail what you are trying to do and we’ll figure something out. ![]()
Hi Max, I’m trying post the context from a SaaS application to UI Bakery so that this can be used to enhance the SaaS application. Alternatively indeed I can put the context into a database and send the reference to the record through the query params. I’ll follow that route.
thanks