Home > Backend Development > PHP Tutorial > 七牛开发者文档关于上传凭证,url安全base64得出的数据不同

七牛开发者文档关于上传凭证,url安全base64得出的数据不同

WBOY
Release: 2016-06-06 20:47:04
Original
1350 people have browsed it

我浏览的文档链接

我使用php来实现,有个url安全的base64计算方法是需要自己实现,实现代码如下:

<code>function urlsafe_base64_encode( $str ){
    return strtr(base64_encode($str), '+/', '-_');
}
</code>
Copy after login
Copy after login

我使用putPolicy的值计算得出的结果跟上面的结果一样,
但是计算sign得出来的是:YzEwZTI4N2YyYjFlN2Y1NDdiMjBhOWViY2UyYWFkYTI2YWIyMGVmMg==
跟文档上面的wQ4ofysef1R7IKnrziqtomqyDvI=有所不同,不知道是哪里有问题?

回复内容:

我浏览的文档链接

我使用php来实现,有个url安全的base64计算方法是需要自己实现,实现代码如下:

<code>function urlsafe_base64_encode( $str ){
    return strtr(base64_encode($str), '+/', '-_');
}
</code>
Copy after login
Copy after login

我使用putPolicy的值计算得出的结果跟上面的结果一样,
但是计算sign得出来的是:YzEwZTI4N2YyYjFlN2Y1NDdiMjBhOWViY2UyYWFkYTI2YWIyMGVmMg==
跟文档上面的wQ4ofysef1R7IKnrziqtomqyDvI=有所不同,不知道是哪里有问题?

例子中给出的不一定是完全一致编码出来的,只是一个示范。你可以参考我们的代码实现:https://github.com/qiniu/php-sdk/blob/develop/qiniu/utils.php

你好,请问下能说明 wQ4ofysef1R7IKnrziqtomqyDvI= 怎么计算出来的吗?我用的是asp.net2.0没有这方面的demo

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template