We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm requesting accesstoken from backend . But when I pass the Oauthtoken it is asking to signin Anyone know about it.
The text was updated successfully, but these errors were encountered:
if (response.status === 200) { gapiLoaded();
function gapiLoaded() { window.gapi.load("picker", intializePicker); } function intializePicker() { console.log("pick loaded"); pickerInited = true; showPicker(); } const showPicker = () => { const picker = new window.google.picker.PickerBuilder() .addView(window.google.picker.ViewId.FOLDERS) .setOAuthToken(data.token) .setDeveloperKey(DKEY) .setCallback(pickerCallback) .build(); picker.setVisible(true); };
}
Sorry, something went wrong.
@shoaibkh4n How did you go around this?
davidharcombe
No branches or pull requests
Summary
I'm requesting accesstoken from backend . But when I pass the Oauthtoken it is asking to signin
Anyone know about it.
The text was updated successfully, but these errors were encountered: