public static async Task <bool> StoreTokenHelper(string jobType, string code, string redirectUrl, string jobId) { IConnectorSourceProvider sourceProvider = new FacebookProvider(new AzureTableProvider(Settings.StorageAccountConnectionString)); await sourceProvider.StoreOAuthToken(code, redirectUrl, jobId); return(true); }