Search Console shows no valid pages for JobPosting - schema.org

I have created structured data in my page for JobPosting markup and I want to see the results in Google Search Console.
When I go to https://search.google.com/search-console/jobs, I see many warnings and no valid page.
When I test it in https://search.google.com/structured-data/testing-tool, it returns valid markups with warnings.
I want to know how this console works and why no valid pages shows to me?
This is how I saw the status:

Related

Google tells me that http://mydomain.de.whoisbucket.com/ is not indexed

I got a report from Google Search console (sc-noreply#google.com):
Page indexing issues detected in http://sprechcomputer.de/
To the owner of http://sprechcomputer.de/:
Search Console has identified that your site is affected by 1 Page indexing issue(s). The following issues were found on your site. We recommend that you fix these issues when possible to enable the best experience and coverage in Google Search.
Top issues
Page with redirect
Fix Page indexing issues
When I open search console, it says that 4 days ago, my URL was not indexed anymore.
However, I did not change anything.
It offers "INSPECT URL" and "TEST ROBOTS.TXT BLOCKING".
I click "TEST ROBOTS.TXT BLOCKING", and it tells me that I don't have a robots.txt
I click "INSPECT URL", and it shows this:
Referring page
http://sprechcomputer.de.whoisbucket.com/
http://www.whoisbucket.com/view/sprechcomputer.de
This is the only anomaly that I can see.
These are not my domains. Is this a bug in Search Console?
What is the problem here?
Also, none of my pages are indexed, according to this screenshot:

Unable to read sitemap: Google Search Console

Sitemap could not be read
General HTTP error
1 instance
We encountered an error while trying to access your Sitemap. Please ensure your Sitemap follows our guidelines and can be accessed at the location you provided and then resubmit.
Examples
HTTP Error:500enter image description here
Refer to the posts:
https://www.searchenginejournal.com/gsc-reports-sever-500-errors/375791/#close
https://support.google.com/webmasters/thread/66363365?hl=en
There can be errors in the code of the page or the structure. Google has set certain parameters based on which it decides to validate the submitted URLs and sitemaps.
It will be better if you can share the link of the problematic page so that one can try to catch what might be the issue.
For example:
https://paragpallavsingh.com/sitemap.xml, this is an autogenerated sitemap by WordPress. and submitted in Google search console without any issue.

Facebook Graph Api - Adding new Tab to Page not working

In the Facebook graph api explorer I am trying to add a new Tab to a fanpage according to the documentation.
So I make a POST to /pageId/tabs with the field app_id and my app's ID as value using the page access token I got when querying userId/accounts. The access token includes the manage_pages permission.
I get the result true which is supposed to mean, the create was successful. But if I run a GET on pageId/tabs the newly created tab is nowhere to be found.
Am I missing something? Shouldn't it have created the Tab if it says "true"? Has anyone done this and can tell me how it worked for you?
Thanks!
I created a specific bug report
And this one seems to be related
Wow, so this is a perfect example of how important a meaningful error message or in this case ANY error message at all is.. Dear Facebook API developers, please get your act together, this is just one of many examples of inconsistency!
What the error message should have told me is "This app is not designed to be added as a tab" (As btw is the error message when trying to add it with
http://www.facebook.com/dialog/pagetab?app_id=YOUR_APP_ID&next=YOUR_URL
Because when I set the app settings to "tab" instead of "app on facebook", everything works fine! Sigh! Admittedly I could have done this right initially but who is infallible?!
The Graph API call simply should not return true if the request fails!

Facebook not able to analyse my web pages to determine useful images etc for shared links

I am trying to ensure that meaningful information is supplied with Facebook shared links to the HTML5 pages on my website. Right now, links are just showing up as a URL, with no description or accompanying image.
I have been using the open graph tags to provide metadata on the page.
I have been trying to check the pages on the website using the Facebook debugging tool but the tool does not get any data from the page being checked.
For example, I try to debug the page: http://www.gaiaguide.info/do/Hierarchy
It responds with the error: "Could not retrieve data from URL."
The graph API data provided by the debugging tool has the following value:
{
"error": {
"message": "An unknown error has occurred.",
"type": "OAuthException",
"code": 1
}
}
When I look at what Facebook scraper sees for the page, all I get is the following:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
The entire HTML content is missing. What is even more peculiar is that it is not even the same doctype as the page I am trying to test.
It is not clear to me why an OAuthException would be raised. The page is visible to external sources for validation. For example, I have validated the page on an HTML5 validation site and it is definitely seeing the entirety of the page contents.
I haved tried URLs from other sites served on the same IP address from the same server and they are fine. An appropriate image and summary is provided in the set of information that would be used to construct the shared link.
I have found other HTML5 pages that validate fine on the Facebook debugger.
I have tried to remove the og:* meta tags from the pages to see if they were causing Facebook to think that the website should be requiring some kind of user authentication but that has not impacted upon the problem.
I have tried to remove the "sharethis.com" mark-up and Javascript that is responsible for the sharing icons to the pages but that has also had no effect.
Any insights into what should be a simple problem would be greatly appreciated.
Thanks
Geoff S
The only issue I can see on your page is the empty space at the top of your HTML code. I made a copy of your page (http://www.webniraj.com/hierarchy.html) and put it through the debugger after removing the odd characters at the beginning of the file.
The page seemed to work correctly after that:
http://developers.facebook.com/tools/debug/og/object?q=http%3A%2F%2Fwww.webniraj.com%2Fhierarchy.html

How do I check if a page is Google cached in Perl?

I tried lots of modules, seems like nothing works well.
Do you have any idea how to check if a page I supply, for example:
http://bloggingheads.tv/forum/member.php?u=12129
Is available on google cache?
I'm using Perl.
Try connecting to
http://www.google.com/search?q=incache:[url]
(Note that the URL should be URL-encoded)
For example:
http://www.google.com/search?q=incache%3Ahttp%3A%2F%2Fbloggingheads.tv%2Fforum%2Fmember.php%3Fu%3D12129
If your page is stored in the Google cache, you will have a search result. If the page isn't, you will have a text saying "Your search did not match any document".
You can try to parse this page to know if your page is in the Google cache.