mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-11 07:04:06 -08:00
33 lines
770 B
TypeScript
33 lines
770 B
TypeScript
import type {
|
|
ICredentialsDecrypted,
|
|
ICredentialTestFunctions,
|
|
INodeCredentialTestResult,
|
|
} from 'n8n-workflow';
|
|
|
|
import { getGoogleAccessToken } from '../../../GenericFunctions';
|
|
|
|
export async function googleApiCredentialTest(
|
|
this: ICredentialTestFunctions,
|
|
credential: ICredentialsDecrypted,
|
|
): Promise<INodeCredentialTestResult> {
|
|
try {
|
|
const tokenRequest = await getGoogleAccessToken.call(this, credential.data!, 'sheetV2');
|
|
if (!tokenRequest.access_token) {
|
|
return {
|
|
status: 'Error',
|
|
message: 'Could not generate a token from your private key.',
|
|
};
|
|
}
|
|
} catch (err) {
|
|
return {
|
|
status: 'Error',
|
|
message: `Private key validation failed: ${err.message}`,
|
|
};
|
|
}
|
|
|
|
return {
|
|
status: 'OK',
|
|
message: 'Connection successful!',
|
|
};
|
|
}
|