-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathget-service.js
66 lines (59 loc) · 2.11 KB
/
get-service.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
"use strict";
const GoogleAdsAuth = require("./get-auth");
const { NodeFetch } = require("./library/node-fetch");
class GoogleAdsReport {
/**
* @param {object} configs
* @property {string} developerToken
* @property {string} userAgent
* @property {string} clientId
* @property {string} clientSecret
* @property {string} refreshToken
* @property {string} loginCustomerId
* @param {string} accessToken
*/
constructor(configs, accessToken) {
this.configs = configs;
this.accessToken = accessToken
this.version = "v2";
this.auth = new GoogleAdsAuth(configs);
}
setOauthHeader() {
return {
"User-Agent": this.configs.userAgent,
"Content-Type": "application/json",
charset: "utf-8",
Accept: "application/json",
Authorization: `Bearer ${this.accessToken}`,
"developer-token": this.configs.developerToken,
"login-customer-id": this.configs.loginCustomerId
};
}
/**
*
* @param {*} cid
* @param {*} operations
*/
async customerCreateAccount(cid, operations) {
if (!cid) throw new Error("CID Not Found");
if (!operations) throw new Error("Must Provide Operations");
cid = cid.replace(/-/g, "");
try {
const header = this.setOauthHeader();
// Docs : https://developers.google.com/google-ads/api/reference/rpc/google.ads.googleads.v2.services#google.ads.googleads.v2.services.CreateCustomerClientRequest
const endpoint = `https://googleads.googleapis.com/${this.version}/customers/${cid}:createCustomerClient`;
const option = {
method: "POST",
body: JSON.stringify(operations),
headers: header
};
const response = await NodeFetch(endpoint, option);
const json = await response.json();
return json;
} catch (err) {
console.log("Error ::>", err);
throw new Error(err.message);
}
}
}
module.exports = GoogleAdsReport;