반응형
WooCommerce API Return 404를 찾을 수 없습니다.
저는 WooCommerce API 작업을 하고 있는데, 요청에 문제가 있습니다.
API 요청이 404를 반환하거나 "my-account"로 리디렉션할 수 있습니다.
API 요청 예:
https://example.com/index.php/wc-api/v3/products?consumer_key=ck_XXXXXXXXX&consumer_secret=cs_XXXXXXXXX`.
예쁜 링크가 활성화 되어 있습니다.
여기 제 것이 있습니다..htacess
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
좋은 생각 있어요?
SDK는 https://packagist.org/packages/automattic/woocommerce 에서 다운로드하여 https://woothemes.github.io/woocommerce-rest-api-docs/ 에서 가이드해 주세요.api credential 폼 wordpress admin end woocommerce > 설정 > 새 키 추가
$client = 'ck_63aade4xxxxxxxxxxxxxxx'; //put client key
$secret = 'cs_673d7cdxxxxxxxxxxxxxxx'; //put secret key
require __DIR__ . '/restapi/vendor/autoload.php'; //give your sdk autoload.php path
use Automattic\WooCommerce\Client;
$woocommerce = new Client(
'http://localhost:8888/woocommerce/', //site url
$client,
$secret, // Your consumer secret
[
'version' => 'v3' // WooCommerce API version
]
);
print_r($woocommerce->get(''));
언급URL : https://stackoverflow.com/questions/36914316/woocommerce-api-return-404-not-found
반응형
'IT' 카테고리의 다른 글
정의되지 않은 로컬 변수 또는 JBuilder의 메서드 'json' (0) | 2023.03.19 |
---|---|
이름이 tuple인 Python을 json으로 직렬화 (0) | 2023.03.19 |
wordpress가 쿼리가 있는 스크립트/스타일을 큐에서 해제할 수 없습니다. (0) | 2023.03.14 |
ReactJs에서 이벤트에 className을 추가 또는 삭제하려면 어떻게 해야 합니까? (0) | 2023.03.14 |
반응 사이트 경고:href 속성에는 유효한 주소가 필요합니다.유효한 주소를 href 값 jsx-a11y/anchor-is-valid로 지정합니다. (0) | 2023.03.14 |