Does Yahoo Japan have webmaster tools?
Is there a webmaster tools for Yahoo Japan? Company-wise Yahoo Japan is operated differently from Yahoo in the US, so I don't know if Bing Webmasters will apply to Yahoo Japan or not.
See also questions close to this topic
-
Google Index in Url Inspection is incorrect
The Google Index tab in URL Inspection in Search google console shows incorrect info (https://www.dropbox.com/s/dvifnkv144noanj/incorrect.png?dl=0), while the Live Test tab shows there correct info (https://www.dropbox.com/s/bkh1je2ntybmoco/correct.png?dl=0). From my understanding the results should be the same, though maybe with some delay of next indexation, but the results remain different for a long time. Finally in goggle search it shows me the incorrect version (https://www.dropbox.com/s/7yiiv3062mjl8d7/result.png?dl=0).
-
Image Alt Tag - Multiple identical Images
Not sure if SEO questions are relevant for StackOverflow. Feel free to correct me if not.
Have a "quiz" website that shows many duplicate images. For example - when users are going through a "goals" section of the quiz the image stays the same until the section changes.
<p class= id='question1'> I'm very motivated.</p> <img id='image1' src='https://i.imgur.com/DfxbRDL.jpg' alt= "Woman shooting bow"> <p class= id='question2'> I want to succeed.</p> <img id='image2' src='https://i.imgur.com/DfxbRDL.jpg' alt= "Woman shooting bow">
The images are hidden and shown depending on the question.
My question is:
What is the best way to handle this from an SEO standpoint? Just make different alt tags for the same image?
Should I create a variable and somehow use it for the images>
-
How to add important/inner pages on google search?
I have a domain i want to add on google search, I index domain on
Google web master tool
that is displaying well when i search my domain name.Now i want to added few more important/inner pages on google search, like below image.
Where can i added important/inner pages for google search?
First of all i want to know what we can say inner pages indexing like given inside of red border in above image.
Answer will be appreciated!
-
Is it possible to use a simple script to filter pictures for nsfw content?
I try to find a solution to filter pictures for NSFW (Notsafeforwork)-Content. I already knew about the open_nsfw from yahoo! But how can I use this for scanning a folder and sort the pictures out for example?
-
YahooFinancials module how to access historical balance sheet data
I am using the new Yahoofinancials Module to get financial statement data. Specifically the historical data from financial statements. The code I am using only returns the most recent piece of data. In the module description it states that
Quarterly statement data returns the last 4 periods of data, while annual returns the last 3.
How to access these last 3 or 4 periods of data?
from yahoofinancials import YahooFinancials as YF tickers = ['aapl', 'fb', 'goog'] for ticker in tickers: yf = YF(ticker) CurrentAssets = yf._financial_statement_data('balance', 'balanceSheetHistoryQuarterly', 'totalCurrentAssets', 'quarterly')
This code will give me the most recent piece of data for the current assets. How can I access the older 3 or 4 data pieces?
-
Yahoo OATH DSP API - creting reports causes problems
I successfully get access token and then try to create report using this code:
$post = '{ "reportOption": { "timezone": "Europe/London", "currency": 1, "dimensionTypeIds": [ 5 ], "metricTypeIds": [ 44, 1, 2, 23, 11, 41, 43 ] }, "intervalTypeId": 1, "dateTypeId": 2, "startDate": "2019-01-30T00:00:00", "endDate": "2019-01-30T11:59:59" }'; $url = 'http://api-sched-v3.admanagerplus.yahoo.com/yamplus_api/extreport/'; $curl = curl_init(); $options = array( CURLOPT_URL => $url, CURLOPT_HTTPHEADER => array( 'Content-Type: application/json', 'X-Auth-Method: OAUTH', 'X-Authorization ' . json_decode($this->token)->access_token ), CURLOPT_TIMEOUT => 600, CURLOPT_ENCODING => "", CURLOPT_RETURNTRANSFER => 1, CURLOPT_MAXREDIRS => 3, CURLOPT_HTTPAUTH => CURLAUTH_ANY, CURLINFO_HEADER_OUT => true, CURLOPT_CUSTOMREQUEST => 'POST', CURLOPT_SSL_VERIFYPEER => false, CURLOPT_POSTFIELDS => $post ); curl_setopt_array($curl, $options); $res = curl_exec($curl); print_r($res);
Unfortunately it doesn't let me authorise even though the account I am using has a full access. I keep getting this response:
{ status: 401, message: "HTTP 401 Unauthorized", requestId: "1549288356177-a3b-180-t1", requestUrl: "http://api-sched v3.admanagerplus.yahoo.com/yamplus_api/extreport/", requestBody: ""
}
What is wrong here?
-
Does search engine bots follow handler redirect links while indexing?
Suppose I have a domain
www.xyz.com
and a subdomainwww.jobs.xyz.com\engineering
.If I link to that subdomain page in my main website using handler redirect in back-end code, would the spider follow the link and index it?
Redirect from an handler in the back-end code:
<a href="/jobs/">Engineering Jobs</a>
Vs
Linking the sub-domain page directly:
<a href="www.jobs.xyz.com/engineering">Engineering Jobs</a>
Wondering if the second option will be considered as external linking and receive higher link juice than the first option.
-
POST requests to Bing Webmaster API always gives NotAuthorized
I'm trying to programmatically submit sitemap index files to Bing via HTTP POST requests. I followed the JSON request example from their documentation page.
Here is the request I'm trying to make in cURL (I replaced the site url and apikey):
curl -XPOST -H 'Host: ssl.bing.com' -H "Content-type: application/json" -d '{ "siteUrl":"https:\/\/www.example.com", "feedUrl":"https:\/\/www.example.com\/Sitemaps\/SitemapIndex--stuff--01.xml" }' 'https://bing.com/webmaster/api.svc/json/SubmitFeed?apikey=MY_KEY'
The response looks like this:
{ "ErrorCode": 14, "Message": "ERROR!!! NotAuthorized" }
The api key is generated from the Bing webmaster ui portal. My user has
administrator
rights. Adding a Content-Length header did not help.GET requests work alright and I can retrieve feed or traffic information.
In the Bing webmaster portal UI page I can submit sitemap files with no problem.
I've searched the web for this before asking and I could not find anything relevant. Has anyone encountered this problem also? Probably I'm missing something and I would appreciate some advice.
-
Why isn't Google & Bing indexing my website
I've attempted to have my website indexed by Google & Bing multiple times, but it is saying the format isn't correct.
I am unfamiliar with how to structure the text in .xml for the purposes of indexing on search engines.
Can someone please help me get my sitemaps indexed on Google & Bing by using .xml formatting.