Zend_Service_Amazon_Simpledb 和特殊字符的问题
我想使用 Zend Framework 将一些数据从 MySQL 复制到 SimpleDB。到目前为止它工作正常,但如果任何属性包含特殊字符,如“äöüß”,服务器会拒绝我的请求,并显示“我们计算的请求签名与您提供的签名不匹配。”。
如果所有特殊字符都以某种方式编码,SimpleDB 接受请求,但我希望它像这样。我能做什么来解决这个问题?我试图在谷歌中查找信息,但没有找到解决方案。
I want to copy some data from MySQL to SimpleDB with the Zend Framework. It works fine so far, but if any attribute contains special chars like "äöüß" the server refused my request with "The request signature we calculated does not match the signature you provided.".
SimpleDB accept the request, if all specialchars are encoded in some way, but I want it like it is. What can I do to solve that? I tried to find informatione in google, but I found no solution.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了该问题的解决方案,但我必须更改 Zend_Service_Amazon_SimpleDb 中的一些代码。请求中缺少 http 标头。只需添加
$request->setHeaders('Content-Type', 'application/x-www-form-urlencoded; charset=utf-8');
在 _sendRequest() 中。
I found a solution for that problem, but I had to change some code in Zend_Service_Amazon_SimpleDb. There was a missing http-header in the request. Just add
$request->setHeaders('Content-Type', 'application/x-www-form-urlencoded; charset=utf-8');
in _sendRequest().