您好我正在shopify中使用店面api开发ios应用程序现在我需要获取特定集合的所有产品标签但是在文档中我找不到可以任何人建议我是否可能?
答案 0 :(得分:2)
请尝试这种方式:
第1步: 创建用于搜索标签的模板,如:
{% layout none %}
{% capture output %}
{% for collection in collections %}
{% if forloop.index == 1 %}""{% endif %}
{% if collection.all_tags.size > 0 %}
{% for tag in collection.all_tags %}
{% if output contains tag %}
{% else %}
,"{{tag}}"
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}
{% endcapture %}
{{ output | strip_newlines | prepend: '[' | append: ']' }}
第2步: PHP示例代码
function pullJson( $url ) {
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_RETURNTRANSFER => 1,
CURLOPT_URL => $url,
CURLOPT_USERAGENT => 'agent-sark'
));
$resp = curl_exec($curl);
curl_close($curl);
return json_decode( $resp, true );
}
$storeUrl = "http://". { your store } .".myshopify.com";
/* this will gets you all the tags ( of course with duplicate ) */
$pTags = array_unique( pullJson( $storeUrl ."/search?view=tags" ) )
来源:here
如果还没有帮助,请告诉我。