I want to use the transloadit service, but I don’t like the fact that when my users authenticate, they see your logo and company name on the app id.
Can I provide my own instagram id and secret so that users still authenticate against my app?
I want to use the transloadit service, but I don’t like the fact that when my users authenticate, they see your logo and company name on the app id.
Can I provide my own instagram id and secret so that users still authenticate against my app?
Assuming that you are talking about Uppy rather than Transloadit (I’ve never heard of importing from Instagram directly to Transloadit), it is pretty simple
You can run your own Companion server (documented here) with either Express or standalone. You can pass your Instagram credentials there.
As for the frontend part, just pass the companionUrl
property when initialize the Instagram plugin
Here is a very simple example:
uppy.use(Instagram, {
target: Dashboard,
companionUrl: 'my companion url',
})