You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
looking through the code of the tap itself, seems like a very easy fix.... to allow the specification of the environment in the config json file, and using this to determine the api URL in the client class
however as most people seem to be using the tap through Stitch (including my own team) - not sure how changes to the stitch integration could / would get prioritized
classClient(object):
""" The client class is used for making REST calls to the Github API. """BASE_URL='https://api.typeform.com'EU_BASE_URL='https://api.eu.typeform.com'OAUTH_URL='https://api.typeform.com/oauth/token'def__init__(self, config, config_path, dev_mode):
...
self.typeform_url=self.EU_BASE_URLifconfig.get('typeform_environment') =='eu'elseself.BASE_URL
...
defbuild_url(self, endpoint):
""" Returns full URL for a given endpoint. """returnf"{self.typeform_url}/{endpoint}"
EU is not supported
https://www.typeform.com/developers/get-started/responses-data-center/#authorization
The text was updated successfully, but these errors were encountered: