How to get page with list of all authors on Amazon - amazon-product-api

I need to get a page with a list of ALL authors in certain genres.
(ie like finding all sellers in certain category)
Here are examples:
https://www.amazon.com/gp/search/other/ref=sr_sa_p_lbr_one_browse-bin?rh=n%3A133140011%2Cn%3A%21133143011%2Cn%3A7078878011%2Cn%3A154606011%2Cn%3A668010011&bbn=7078878011&sort=featured-rank&pickerToList=lbr_one_browse-bin&ie=UTF8&qid=1480374583
https://www.amazon.com/gp/search/other/?rh=n%3A283155%2Cn%3A%211000%2Cn%3A17&pickerToList=lbr_one_browse-bin
How can I find these pages for ALL genres I want?
Is there some advanced search page I can use?
Thanks!

Related

How can I filter a search in Google for pages already visited?

I want to filter the search of a document. I have key words to do that, but the first searches that appear are not what I am looking for. I need to check a specific piece of information, but I don't find the web where I found that information.
If I could filter the search with pages "already visited," it would help because I know I visited that website less than two months ago. Google allowed me to do this before, but I don't manage to filter by visited pages. Is it possible to do this?

Looking for help when using Mediawiki "recentchanges" syntax

I am having a hard time finding an example of what I am looking for. I am trying to show recent changes on one of my category pages using {{special:recentchanges/day=5,limit=10}}. I am part of a busy Wiki and am trying to limit the search to just a particular category or my watchlist.
I can see from the "Help:recent changes" page on the main MediaWiki website that it lists "namespace" as an integer but I cant seem to get it to work narrowing down to just a specific category in conjunction with the above line.
Long story short: I would just like to show recent changes to a specific category or my watchlist on my main category page. Any help is greatly appreciated!
Tgr's answer is correct, copying here: Namespaces are unrelated to categories. You cannot filter Special:RecentChanges by category. You can use Special:RecentChangesLinked instead which is similar.
For more, see https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Tracking_changes

How to implement Rich Snippets

I am looking to include rich snippets into a site I'm building for a customer. The customer requested this because he wants his organic search results to show his review stars.
I have read some blog posts about Rich Snippets but none of them show or tell me what to actually change in the source code for those review stars to show up in Google.
I've got the following data at my disposal:
Company name
Site name
Review Average
Total Reviews
To add upon my story (in hopes of making it more clear):
I'm working on a webshop. Let's call it example.com. After customers made a purchase in the webshop they receive an email asking them if they want to rate the webshop. My client wants those ratings (stars) visible in the organic search results. I've learned that rich snippets are required to do this. What I do not understand however is how these rich snippets should look, where I need to place them, and especially. What type of rich snippet I need to do this.
Google documents their Rich Snippets. For your case:
Reviews
Review ratings
Enabling Rich Snippets for Reviews and Ratings
The examples still use the inactive vocabulary Data-Vocabulary.org, but as explained in the header, you probably want to use the vocabulary Schema.org now.
The relevant Schema.org types would be:
Review
Rating / AggregateRating
You can use the vocabulary Schema.org with different syntaxes. For marking up visible content on webpages, you’ll probably want to use Microdata or RDFa (see my answer about their differences).
For checking your structured data, you can use Google’s Testing Tool.
You have to manipulate your code for do that.
The full reference can be founded here http://schema.org
and the section for Aggregate Rating is here http://schema.org/AggregateRating
When you're done, you can test your work with the google tool here https://www.google.com/webmasters/tools/richsnippets
Hope it helps

Creating a category hierarchy in a MediaWiki environment

Background:
I work with a large collaboration which centralizes a lot of documentation in a wiki structure. I have passing familiarity with wiki-markup and can create simple pages with links, etc.
One major deficiency of my collaboration's wiki (based on mediawiki architecture) is that there is very little organization or cross-linkage.
I'm attempting to introduce a hierarchical category structure to the wiki, such that pages are broken down into categories, providing a means of interlinking information.
I know that I can add a [[Category:THISCATEGORY]] tag to any page source, and a special category page which organizes other pages with that category is automatically generated. The major advantage of this method of linking pages is that one gets access to related pages for free (so long as they are tagged), without requiring direct cross linkage between pages explicitly.
Question:
I'm wondering, is there an efficient way to create a root-category node of some kind, which instead of linking to other pages, links to all categories? This would allow the wiki to be effectively cross-linked without major overhauls, and would only require that a page author provide some general category tags for any additional pages they might wish to add.
You can use the special page Special:Categories to show the list of all categories on a wiki.
But if you want a better structure, I think you should also create a hierarchical structure from your categories (like Wikipedia does starting with Category:Contents). That way, your users will be able to navigate not just articles in the same category, they will also be able get to similar categories.
I'm not sure if this is as automatic as you'd like, but you can add a category tag to the article for a Category, and it'll become a subcategory of sorts. For example, go to the article "Category:Foo", edit it, and add [[Category:Bar]]. When you then visit Category:Bar, it'll list Foo as a subdirectory.
For example, see this page on wikipedia, which has this category as a subcategory, which itself has subcategories.
Once your category tree has grown you can use Special:UncategorizedCategories to make sure all categories (apart from one) are in at least one subcategory. Similarly you can use Special:UncategorizedPages to make sure all of your pages live in at least one category.

How are SEOs done for dynamic websites? Whether each page is separately built static?

I had a food takeaway website where the users can search the restaurants by giving their area name. I want my website's LONDON search page to be listed when user searches in Google TAKEAWAYS IN LONDON.
I think google doesn't crawl websites with query string. How can we achieve that?
Remember that Google just looks at the page you create, not how you create it.
Now this basically translates your question to "how do we make our dynamic pages visible to Google"? There are a number of tricks. Basically you build links from your homepage to specific other pages. You could have a "Top 5 searches" box, with links to "http://www.example.com/london/takeaways" etc. On the result pages, you can have links to similar queries, e.g. "http://www.example.com/london/finedining".
Basically, Google will see and follow those links, and remember the results per URL. The basic SEO rules till apply - good content, clear structure, etc. Don't bother Google or users with query strings. Use URL rewriting if a query string easier for you internally.
Maybe you're supposed to have a sitemap, which could have a discoverable link to a page of yours whose URL is http://www.food.com/london and whose title and heading is 'TAKEAWAYS IN LONDON' (and whose contents you can retrieve dynamically).