0

我正在尝试将我的 Web 应用程序连接到我的 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

关于使用哪个 URL。

我不确定问题出在哪里。

有关我的 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>

显然我不是唯一一个遇到这个问题的人:

4

0 回答 0