1

我正在尝试将 Adob​​e 的 Creative SDK 实施到我的 Ruby on Rails 应用程序中。

https://creativesdk.adobe.com/docs/web/#/articles/highresolution/index.html

我拥有对高分辨率 API 的所需访问权限。

他们的示例是针对 PHP 和 Node.js 的,我正在尝试编写基于 PHP 的 Ruby on Rails 版本。我已经完成了所有设置,因为它正确调用了“authenticationURL”,但我收到了“无效的 authenticationURL 响应。请检查响应的格式。”

我是这个级别的编程新手,基本上试图通过参考一些关于 PHP 和 Ruby 的问题以及http://www.phptoruby.com/等网站来解决这个问题。

这是PHP:

<!-- /getAuth -->

<?php
$apiKey = "apikey";
$apiSecret = "apisecret";
$salt = rand(0,1000);
$time = time();
$sig = sha1($apiKey . $apiSecret . $time . $salt);

$authObj = array(
    "apiKey" => $apiKey,
    "salt" => $salt,
    "timestamp" => $time,
    "encryptionMethod" => 'sha1',
    "signature" => $sig
);

echo json_encode($authObj);

?>

这是我目前所拥有的(正确输入了我的 apikey 和 apisecret):

require 'time'
require 'json'
require 'digest/sha1'

def get_auth
 apiKey = 'apikey'
 apiSecret = 'apisecret'
 salt = "#{0 + rand(1000)}"
 time = "#{Time.now.to_i}"
 sig = Digest::SHA1.hexdigest('apiKey' + 'apiSecret' + 'time' + 'salt')


 authObj = { :apiKey => 'apiKey',
                 :salt => 'salt',
                 :timestamp => 'time',
                 :encryptionMethod => 'sha1',
                 :signature => 'sig' }

 print 'authObj'.to_json
 render :fxb
end

我不确定在print这里使用是否正确?或者,如果我的问题是语法问题……或者完全是其他问题。

4

4 回答 4

1

尝试改变

 sig = Digest::SHA1.hexdigest('apiKey' + 'apiSecret' + 'time' + 'salt')

 sig = Digest::SHA1.hexdigest(apiKey + apiSecret + time + salt)

使用单引号,它将apiKey字符串本身作为要散列的值,而不是它的值。

此外,还需要更改以下内容以删除单引号:

authObj = { :apiKey => 'apiKey',
                 :salt => 'salt',
                 :timestamp => 'time',
                 :encryptionMethod => 'sha1',
                 :signature => 'sig' }

 print 'authObj'.to_json

authObj = { :apiKey => apiKey,
                 :salt => salt,
                 :timestamp => time,
                 :encryptionMethod => sha1,
                 :signature => sig }

 print authObj.to_json
于 2016-07-14T14:42:14.120 回答
0

将此添加为控制器操作:

  def auth_aviary
    timestamp = Time.now.to_i.to_s
    salt = rand(1000).to_s
    sig = Digest::SHA1.hexdigest(
            Conf.aviary_api_key + 
            Conf.aviary_api_secret + 
            timestamp + 
            salt
          )
    render json: {
      "apiKey" => Conf.aviary_api_key,
      "salt" => salt,
      "timestamp" => timestamp,
      "encryptionMethod" => 'sha1',
      "signature" => sig
    }
  end
于 2016-12-02T15:57:03.837 回答
0

为仍然面临问题的人回复旧帖子。该解决方案可能有效(至少对于 asp.net)。我遇到了同样的错误,一旦我将响应内容类型设置为“application/json; charset=utf-8”,它就得到了解决。没有它,aviary 会将 auth json 读取为字符串而不是对象,并且无法将其解析为时间戳、签名等

Response.ContentType = "application/json; charset=utf-8";

希望它会有所帮助。

于 2017-01-13T04:03:30.340 回答
0

是的,我在 php 中设置了标题,一切正常。

header('Content-Type: application/json');

于 2017-04-02T18:39:06.420 回答