How to set RD Station callback URL on Airbyte open...
# ask-ai
m
How to set RD Station callback URL on Airbyte open-source?
u
I'm sorry, but the provided knowledge sources do not contain specific information on how to set the RD Station callback URL on Airbyte open-source. However, they do mention that a callback URL is one of the prerequisites for setting up RD Station Marketing as a source in Airbyte. I recommend checking the RD Station Marketing setup guide in the Airbyte documentation for detailed instructions. [RD Station Marketing Source Documentation](https://docs.airbyte.com/integrations/sources/rd-station-marketing)
m
@kapa.ai By default, which would be the callback URL for Airbyte open-source running in a public host?
@kapa.ai By default, which would be the callback URL for Airbyte open-source running in a public host?
u
The callback URL for Airbyte open-source running on a public host would be the URL of your Airbyte instance appended with
/oauth/callback
. However, the exact URL would depend on how you have configured your Airbyte instance and where it is hosted. For example, if your Airbyte instance is hosted at
<http://my-airbyte-instance.com>
, the OAuth callback URL would be
<http://my-airbyte-instance.com/oauth/callback>
. Please note that this URL is used to receive OAuth callbacks, which are redirected to by identity providers after authentication. For more details, you can refer to the [Airbyte Public API - OAuth](https://reference.airbyte.com/reference/start) documentation.
u
A message from kapa.ai
u
The callback URL for Airbyte open-source running on a public host would be the URL of your Airbyte instance appended with
/oauth/callback
. However, the exact URL would depend on how you have configured your Airbyte instance and where it is hosted. For example, if your Airbyte instance is hosted at
<http://my-airbyte-instance.com>
, the OAuth callback URL would be
<http://my-airbyte-instance.com/oauth/callback>
. Please note that this URL is used to receive OAuth callbacks, which are redirected to by identity providers after authentication. For more details, you can refer to the [Airbyte Public API - OAuth](https://reference.airbyte.com/reference/start) documentation.
m
@kapa.ai what if I'm using host:PORT?
u
A message from kapa.ai
u
If you're running Airbyte on a specific port, you would include that in the callback URL. For example, if your Airbyte instance is hosted at
<http://my-airbyte-instance.com:8000>
, the OAuth callback URL would be
<http://my-airbyte-instance.com:8000/oauth/callback>
. Please note that the port number
8000
is just an example. You should replace it with the actual port number where your Airbyte instance is running. Remember, this URL is used to receive OAuth callbacks, which are redirected to by identity providers after authentication. For more details, you can refer to the [Airbyte Public API - OAuth](https://reference.airbyte.com/reference/start) documentation.