Blog

Informazioni sulla protezione di Internet e sulla sicurezza online fornite dagli organizzatori di WOT, la comunità online per la valutazione di siti Web.

WOT 3.0 sneak preview!

You spoke. We listened. You told us you wanted an improved scorecard that gives you the overall picture of a site's reputation, so we made it. You asked for a place to leave comments, so we added it in. You suggested that we include website categories for a more precise evaluation, so we provided it.

WOT 3.0 delivers the BIG picture:

  • Detailed scorecard shows reasons behind ratings
  • Comment area to share your opinions and experiences
  • Read what other users have to say
  • Streamlined rating window for quicker rating

New reputation scorecard and rating window

Website reputation scorecard Rating window

In the next few weeks, we will invite our most active WOT members to be the first to test drive our improved scorecard. This is an important period because we will be counting on you to give us feedback on the new look and functions.

To be a part of this special group, increase your rating activity now, so you'll be among our Top 500 most influential members. You must be a registered user, so click to register today.

Trackback URL for this post:

http://www.mywot.com/it/trackback/1192

WOT gets a woman’s touch

It is my pleasure to introduce the newest member of the Against Intuition team - Deborah Salmi. Deborah will be working together with me to get the word out about WOT and our growing community of users.

Originally from the sunny state of Florida, Deb now resides in Helsinki, WOT’s home base. She has traveled extensively and lived in Asia, Europe and the USA. She is a master scuba diver, plays the clarinet, and is a life-long Star Trek fan, so if you want to talk about something other than website reputation ratings, drop her line on our forum.

Welcome, Deborah!

Trackback URL for this post:

http://www.mywot.com/it/trackback/1191

API for Firefox Extensions

Our latest Firefox add-on includes an API that other Firefox extensions can use to easily determine the safety of a website, as briefly mentioned in the announcement. This post documents the interface and gives some examples on using it from your extension. Unless you are a programmer working on a Firefox extension, continuing beyond this point presents a severe danger of being bored.

The API uses the same rating data you see on the add-on, but makes it friendlier for the caller by also taking care of interpretation. Basically, extension developers should see this as a huge people-driven whitelist of safe websites, which can be helpful when deciding whether to enable certain features for a site, for example. Your users can easily manage the whitelist by giving their own ratings using the rating window, thus overriding any ratings from WOT. For example, if the community considers a site to be safe, but the user has rated it dangerous, the API tells you the site isn't safe.

For simplicity, the API is available as a JavaScript object on the browser window. You can look for its presence by checking if the wot_extapi function has been defined. If it is, you can instantiate the API object as follows:

  var api = null;

  if (typeof(wot_extapi) == "function") {
      api = new wot_extapi();
  }

The wot_extapi object defines a single function called getstatus and a number of return codes as described in the following pseudocode:

  wot_extapi.prototype =
  {
      STATUS_EXCELLENT:    ...,
      STATUS_GOOD:         ...,
      STATUS_UNTRUSTED:    ...,
      STATUS_UNAVAILABLE:  ...,
      STATUS_AGAIN:        ...,

      getstatus: function(target, callback) {
          ...
      }
  };

You can pass the getstatus function either a full URL or simply a host name for the site whose trustworthiness you want to determine, and it immediately returns with one of the status values.

One thing that complicates the API is that ratings may not be cached when you request them, or the WOT add-on has already requested them from our servers and is still waiting for the results. The getstatus method handles requests asynchronously instead of blocking, and you can pass it an optional callback function as a parameter, which gets invoked once the ratings are available. The behavior is then:

  • If ratings aren't available for the site or the extension was unable to retrieve them, the method returns STATUS_UNAVAILABLE.
  • If ratings are cached, the method returns STATUS_EXCELLENT if the overall rating is excellent, STATUS_GOOD if it's good, or STATUS_UNTRUSTED if the ratings are worse or not available in any of the three components. If a callback function is provided, it is invoked with the same status value.
  • If ratings are not cached, the method returns immediately with STATUS_AGAIN and the WOT add-on starts a request to our servers in the background. If you supply a callback function, it will be invoked with the status value once the ratings are available. If no callback function is given, you will have to poll getstatus again later to see if the ratings are available.

In other words, after you instantiate the API object, the easiest way to use it is like this:

  api.getstatus(url, function(status) {
        if (status == api.STATUS_EXCELLENT) {
            /* do something */
        }
    });

You can download sample source code for a trivial, but truly annoying Firefox extension that uses the API to constantly bother you with dialogs about site safety. Enjoy!

Trackback URL for this post:

http://www.mywot.com/it/trackback/1183
Copyright Against Intuition domanda di brevetto depositata