Having Issues with Connecting APIs to my localhost server #44303
Unanswered
MaiAditya
asked this question in
Connector Questions
Replies: 2 comments
-
I'm facing the same issue is there a fix ? |
Beta Was this translation helpful? Give feedback.
0 replies
-
@MaiAditya Did you find a solution for this ? i'm getting the same issue there. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
AttributeError: module 'airbyte_api.models' has no attribute 'SchemeClientCredentials'
Getting this error when trying to authenticate using this code
import airbyte_api
from airbyte_api.models import SourceCreateRequest, SourceGoogleSheets
Initialize the Airbyte API
s = airbyte_api.AirbyteAPI(
base_url="http://localhost:8000", # replace with the URL of your local server
security=airbyte_api.models.Security(
client_credentials=airbyte_api.models.SchemeClientCredentials(
client_id="",
client_secret="",
TOKEN_URL="",
),
),
)
Anyone knows how to resolve the connection issue with the localhost server please help!
Beta Was this translation helpful? Give feedback.
All reactions