2016-09-21 2 views
0

메신저 이베이 API를 사용하여 발견하고 내 나라에 필터 배송 결과를 얻고 싶습니다. 이 shipToLocations를 찾았지만 필터를 찾을 수 없습니다.배송 위치 이베이 api

$apicall .= "&itemFilter(0).name=Condition"; 
    $apicall .= "&itemFilter(0).value=New"; 
    $apicall .= "&itemFilter(1).name=ListingType"; 
    $apicall .= "&itemFilter(1).value=FixedPrice"; 
    $apicall .= "&itemFilter(2).name=HideDuplicateItems"; 
    $apicall .= "&itemFilter(2).value=true"; 
+0

누군가가 도와 드릴까요? –

답변

0
당신은 이름 = AvailableTo과 값을 가지는 새로운 itemFilter을 설정할 수 있습니다

= 국가 예를 들어> 의 < 2 개 문자 코드 :

$apicall .= "&itemFilter(1).name=AvailableTo"; 
$apicall .= "&itemFilter(1).value=DE";     // DE = country code for Germany 
관련 문제