google-search

What are the alternatives now that the Google web search API has been deprecated? [closed]

别等时光非礼了梦想. 提交于 2019-11-25 22:47:58
问题 Google Web Search API has been deprecated and replaced with Custom Search API (see http://code.google.com/apis/websearch/). I wanted to search the whole web but it looks like with the new API only custom sites can be searched. Is there a way to search the whole web programmatically? I was able to query the old API using JSON from a Java program. 回答1: You could just send them through like a browser does, and then parse the html, that is what I have always done, even for things like Youtube.

How do search engines deal with AngularJS applications?

*爱你&永不变心* 提交于 2019-11-25 22:46:46
问题 I see two issues with AngularJS application regarding search engines and SEO: 1) What happens with custom tags? Do search engines ignore the whole content within those tags? i.e. suppose I have <custom> <h1>Hey, this title is important</h1> </custom> would <h1> be indexed despite being inside custom tags? 2) Is there a way to avoid search engines of indexing {{}} binds literally? i.e. <h2>{{title}}</h2> I know I could do something like <h2 ng-bind=\"title\"></h2> but what if I want to