aspose_cells_cloud 1.0.6 → 1.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: df1467e19f873cbe1aed77c1e07201ac0656e5d6
|
|
4
|
+
data.tar.gz: b65b3927f918ed4f2f0253dd2a9a202be9230da2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ee1b61498a426dd89872dc8e2a6e00f86067bde85a5ea7a65070e90277dca8226a38b03575b554fa45c8657a887608dee05f225b4de3ad1868139634fde1e631
|
|
7
|
+
data.tar.gz: f9474e4d3af79812f9c7a5ee5c16190543e4d0dd62150fa0583c9c95e3931cce3f5782b9a817e2f3a84850d454b9f1f1e1d255841a427f4faede84271cf62fae
|
|
@@ -408,7 +408,6 @@ module AsposeCellsCloud
|
|
|
408
408
|
|
|
409
409
|
# http body (model)
|
|
410
410
|
post_body = @api_client.object_to_http_body(save_options)
|
|
411
|
-
puts "JSON: #{post_body}"
|
|
412
411
|
|
|
413
412
|
auth_names = []
|
|
414
413
|
result = @api_client.call_api(:POST, path, :query_params => query_params, :header_params => header_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'SaveResponse')
|
|
@@ -86,7 +86,6 @@ module AsposeCellsCloud
|
|
|
86
86
|
end
|
|
87
87
|
|
|
88
88
|
url = sign(url, opts[:query_params])
|
|
89
|
-
puts url
|
|
90
89
|
Typhoeus::Request.new(url, req_opts)
|
|
91
90
|
|
|
92
91
|
end
|
|
@@ -108,8 +107,6 @@ module AsposeCellsCloud
|
|
|
108
107
|
url = url[0..-2]
|
|
109
108
|
end
|
|
110
109
|
|
|
111
|
-
puts "Before Sign"
|
|
112
|
-
|
|
113
110
|
url = URI.escape(url)
|
|
114
111
|
parsed_url = URI.parse(url)
|
|
115
112
|
|
|
@@ -121,7 +118,6 @@ module AsposeCellsCloud
|
|
|
121
118
|
url_to_sign += "?appSID=#{AsposeApp.app_sid}"
|
|
122
119
|
end
|
|
123
120
|
|
|
124
|
-
puts url_to_sign
|
|
125
121
|
# create a signature using the private key and the URL
|
|
126
122
|
raw_signature = OpenSSL::HMAC.digest(OpenSSL::Digest.new('sha1'), AsposeApp.app_key, url_to_sign)
|
|
127
123
|
|