adops_report_scrapper 0.2.50 → 0.2.51
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG +3 -0
- data/Rakefile +1 -1
- data/lib/adops_report_scrapper/springserve_client.rb +1 -1
- data/lib/adops_report_scrapper/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 95e4a8a2a1ff8e87d7e6c2fe7f05d845d53731d6
|
4
|
+
data.tar.gz: 59fe2e9878044d575507c5df23c80da4f5a9e2c2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 35dbceaabb5e8d29f75aa9108601f89fbb614fde425cf235f13c078c35b66de22abdea7262443fc1ef675d7326f8971fea4387d708dbb32938bb73a9a75e7175
|
7
|
+
data.tar.gz: f4b2165bc6b0b2c6b6cbde4a84b5a9674d8277fa9e028272fd00ea8fc17837a2e7a2eda1fe7324f460af653ad7a48d6aefdef7df1f71ad33abed51e6cf726109
|
data/CHANGELOG
CHANGED
data/Rakefile
CHANGED
@@ -22,7 +22,7 @@ class AdopsReportScrapper::SpringserveClient < AdopsReportScrapper::BaseClient
|
|
22
22
|
|
23
23
|
headers = { content_type: :json, accept: :json, authorization: token }
|
24
24
|
|
25
|
-
response = RestClient.post "https://video.springserve.com/api/v0/report", { timezone: 'America/New_York', date_range: 'Yesterday', interval: 'cumulative', dimensions: ['country', 'supply_tag_id'], account_id: @account_id }.to_json, headers
|
25
|
+
response = RestClient.post "https://video.springserve.com/api/v0/report", { timezone: 'America/New_York', date_range: 'Yesterday', interval: 'cumulative', dimensions: ['country', 'supply_tag_id', 'device_id'], account_id: @account_id }.to_json, headers
|
26
26
|
data = JSON.parse response
|
27
27
|
header = data[0].keys
|
28
28
|
@data = [header]
|