/** Watches the current user */
  public void watch() {
    pbh.showProgressDialog("Watching ...");

    Request req = ApiFactory.createWatch(authorId);
    AndroidRequestWrapper arw = new AndroidRequestWrapper(requesthandler, req);
    arw.exec(
        new DataCall() {
          public void call() {
            justHideProgress();
          }
        });
  }