在我的应用程序中,我将使用Yahoo YQL
的{{1}}从htmlstring
或html
输出的网站中提取xml
。
我这样做的原因是为了获得json
,property="og:image"
& property="og:title"
。
目前我正在这样做:
XML OUTPUT:
property="og:image"
$(function () {
var query;
var apiUrl;
$("button.click").click(function () {
apiUrl = "https://query.yahooapis.com/v1/public/yql?q=select * from htmlstring where url='http://stackoverflow.com/'&diagnostics=true&env=store://datatables.org/alltableswithkeys";
$('p.extract').toggle();
$.get(apiUrl, function(data) {
$('p.extract').addClass('none');
var html = $(data).find('html');
$("input.title" ).val(html.find("meta[property='og:title']").attr('content') || 'no description found');
$("textarea.description").val(html.find("meta[property='og:description']").attr('content') || 'no title found');
$("input.image").val(html.find("meta[property='og:image']").attr('content') || 'no image found');
});
});
});
input {
width: 100%;
margin-bottom: 20px;
padding: 10px;
}
.none{display:none;}
JSON OUTPUT:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>
<button class="click">Click Me</button>
<br>
<p class="extract" style="display:none;">Extracting html</p>
<input type="text" class="title">
<br>
<textarea name="" id="" cols="30" rows="5" class="description"></textarea>
<br>
<input type="text" class="image">
$(function () {
var apiUrl;
$("button.click").click(function () {
apiUrl = "https://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20htmlstring%20where%20url%3D%22http%3A%2F%2Fstackoverflow.com%2F%22&format=json&env=store%3A%2F%2Fdatatables.org%2Falltableswithkeys&callback=";
$('p.extract').toggle();
$.get(apiUrl, function(data) {
$('p.extract').addClass('none');
var html = $(data).find('html');
$("input.title" ).val(html.find("meta[property='og:title']").attr('content') || 'no description found');
$("textarea.description").val(html.find("meta[property='og:description']").attr('content') || 'no title found');
$("input.image").val(html.find("meta[property='og:image']").attr('content') || 'no image found');
});
});
});
input {
width: 100%;
margin-bottom: 20px;
padding: 10px;
}
.none{display:none;}
我现在正在做的是没有提供我想要的细节,而且我发现没有找到,即使我可以在输出中看到它们。
感谢任何帮助,因为我不知道我做错了什么。
答案 0 :(得分:1)
由于我不能再胜过雅虎了,他们可能会阻止其他api主持人,我在服务器上找到了一个在我的应用程序中构建的辅助解决方案。
我的应用程序基于Ruby on Rails,当提交链接以显示实时结果时,我使用Nokogiri和ajax调用服务器。