google-search

importxml in google docs and returning a google search result

两盒软妹~` 提交于 2019-12-12 05:39:27
问题 I am trying to upload a result of a google search into my google docs using importxml and the code that used to work doesn't anymore. I have =IMPORTXML("https://www.google.com/search?q=site: [query]&num=100&start=1","//cite") My error message is Could not fetch url: https://www.google.com/search?q=site:[query]&num=100&start=1 Can someone tell me why this doesn't work anymore? 回答1: Google has lately been blocking search requests made from both Apps Scripts and Google Sheets though the requests

VB.net extract links from google-search using HtmlAgilityPack

烈酒焚心 提交于 2019-12-12 05:32:14
问题 I have now updated my code as a test I want to list all URLs that has the word index.php but it also displays other things. Here is my working code: Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click Dim webClient As New System.Net.WebClient Dim WebSource As String = webClient.DownloadString("http://www.google.com/search?lr=&cr=countryCA&newwindow=1&hl=fil&as_qdr=all&biw=1366&bih=667&tbs=ctr%3AcountryCA&q=index.php&oq=index.php&gs_l=serp.12..0l10.520034.522335.0

Disallow pdf files from indexing (Robots.txt)

丶灬走出姿态 提交于 2019-12-12 02:52:27
问题 I have links being indexed that shouldn't. I need to remove them from google. What should I enter to robots.txt Link example http://sitename.com/wp-content/uploads/2014/02/The-Complete-Program-2014.pdf 回答1: With robots.txt, you can disallow crawling , not indexing . With this robots.txt User-agent: * Disallow: /wp-content/uploads/2014/02/The-Complete-Program-2014.pdf any URL whose path starts with /wp-content/uploads/2014/02/The-Complete-Program-2014.pdf is not allowed to be crawled. But if a

How to add description to SERP

别来无恙 提交于 2019-12-12 02:39:12
问题 Hy I recently search "stackoverflow" via Google and I saw a perfect description about Stackoverflow. Please how can i do this,since Google doesn't use the meta description tag. 回答1: Google uses meta description some times. Usually however it's only if "they" do not find something in the search result which matches the users query "good enough". This can happen if searching for - for example - site names. This means - you cannot determine what Google will show. They'll determine it themselves.

HTML-tag to annotate the origin of a section?

懵懂的女人 提交于 2019-12-11 23:17:43
问题 Google don't like it when you use same content across multiple sites, according to some. Is there any way to annotate/tag a block of content with the "source". Something like an attribute: <div original-content="http://some.url"> The purpose is solely to let Google that we have duplicated the content (I.e. not as part of a search ranking strategy). Search engines could then use this information somehow. 回答1: This might help you out: http://searchengineland.com/google-creates-metatags-to-help

Why doesn't google show www. for my website on searches?

我们两清 提交于 2019-12-11 18:24:16
问题 My site http://www.billysclaypots.com is shown in google without www. in front when I search for it by "billys clay pots". How can I make it so google shows up www. in front, I know usability studies confirm that users are less like to go to a URL without the www as they think there is a fault with the site. I've already added a line to my .htaccess to redirect nonWWW requests to WWW and it works: RewriteCond %{HTTP_HOST} !^www\. RewriteRule ^ http://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

Adding Google's standard search (not custom) to my website

六月ゝ 毕业季﹏ 提交于 2019-12-11 18:13:12
问题 My intention is to embed Google results in my website. I don't want to customise the domain/s on which the search is performed or anything, just a 'bog standard' Google search based on search parameters I pass it. 2 questions: How do I display google results on my website as a response to search criteria entered into a textbox I have? Is there any legislation I need to take into account? I know my second question sounds rather strange but I'm aware that what I'm appearing to do here is

SpeechRecognizer throws ERROR_NO_MATCH on first listening when googlequicksearchbox is in background

妖精的绣舞 提交于 2019-12-11 16:52:23
问题 The behavior is very similar to what is described here, but only happens when the googlequicksearchbox is in the background. I'm with Google APP 5.2.33.19.arm. I created the SpeechRecognizer by calling SpeechRecognizer.createSpeechRecognizer(myContext, new ComponentName("com.google.android.googlequicksearchbox", "com.google.android.voicesearch.serviceapi.GoogleRecognitionService")) I got the following error message in Android Studio Logcat GoogleRecognitionServic﹕ #startListening [es-MX]

how can i make google cache delete old webpages and start to index new ones

泪湿孤枕 提交于 2019-12-11 14:48:09
问题 Hello i have a problem concerning google cache my old content urls while i created a new website I have an old website where the old webpages are dead now and created a new website with new webpages. Becuase I have old content so when people search on Google for old content the old URLs appear in the search results (as it was cached) instead of the new ones which should be appearing (but not indexed yet), this is becuase the old content is already indexed by Google and the new ones are not

How to include movie showtimes in Google Movies?

断了今生、忘了曾经 提交于 2019-12-11 13:18:53
问题 I am making the website of a movie theater, and I want Google Movies to index the showtimes I publish on the website. Does anyone know if there's a way to do this? Maybe using Microformats? Or exposing this information using RSS or something similar? 回答1: I don't believe that Google harvest the show times from the theater web site, they probably buy/tap into a reliable source for that. At most you need to make sure that the theater is listed under Google Local. 来源: https://stackoverflow.com