我正在尝试将我的网络应用程序连接到我的Magento OAuth1。问题是当我尝试URL // mydomain / store / oauth / initiate时,我得到一个页面,上面写着:“找不到这个网页”(错误代码:ERR_FILE_NOT_FOUND)。
这是我的Apache .htaccess配置(部分内容):
############################################
## enable rewrites
Options +FollowSymLinks
RewriteEngine on
############################################
## you can put here your magento root folder
## path relative to web root
RewriteBase /store/
############################################
## uncomment next line to enable light API calls processing
# RewriteRule ^api/([a-z][0-9a-z_]+)/?$ api.php?type=$1 [QSA,L]
############################################
## rewrite API2 calls to api.php (by now it is REST only)
RewriteRule ^api/rest api.php?type=rest [QSA,L]
那么我做错了什么?
可在此处找到更多信息:http://www.magentocommerce.com/api/rest/authentication/oauth_authentication.html
关于使用哪个网址。
我不确定问题的来源。
有关我的Apache .htaccess配置的更多信息:
############################################
## By default allow all access
Order allow,deny
Allow from all
###########################################
## Deny access to release notes to prevent disclosure of the installed Magento version
<Files RELEASE_NOTES.txt>
order allow,deny
deny from all
</Files>
显然,我不是唯一遇到此问题的人: