Skip to main content

How to use the claim token in technorati

To verify your blog using claim token in technorati is very easy. although technorati doesn’t show you how to claim your token to verify your blog in technorati. Here I’m going to tell you how to verify your blog listing in technorati using claim token.

after creating an account in technorati, you recieve a mail having the text following  from them.

This is an automatically-generated email.

Thank you for submitting your blog claim on Technorati. Technorati will need to verify that you are an author of the site http://niitindrapuri.blogspot.com by looking for a unique code. We have just assigned the claim token AGHVMTBUTC9H to this claim. Please visit http://technorati.com/account/ for more details, including how to use the claim token.

Thank you.

Follow these steps to verify your blog using claim token.

  1. Create a new post (such as this) using your blog panel.
  2. Copy the claim code from your email.
  3. Paste your 12-digit technorati claim token in the body of the post.
  4. Your blog will be verify by following these steps

After the verrification, you will recieve an mail from technorati saying something like this.

“Thank you for submitting your blog claim on Technorati. We have successfully crawled your blog and found the claim token, and your claim is now awaiting review.”

My Technorati Claim Token : AGHVMTBUTC9H

Comments

Popular posts from this blog

WAP to calculate the monthly telephone bills as per the following rule: Minimum Rs. 200 for upto 100 calls. Plus Rs. 0.60 per call for next 50 calls. Plus Rs. 0.50 per call for next 50 calls. Plus Rs. 0.40 per call for any call beyond 200 calls.

  #include<iostream.h> #include<conio.h> void main() { int calls; float bill; cout<<" Enter number of calls : "; cin>>calls; if (calls<=100) bill=200; else if (calls>100 && calls<=150) { calls=calls-100; bill=200+(0.60*calls); } else if (calls>150 && calls<=200) { calls=calls-150; bill=200+(0.60*50)+(0.50*calls); } else { calls=calls-200; bill=200+(0.60*50)+(0.50*50)+(0.40*calls); } cout<<" Your bill is Rs. "<<bill; getch(); }   Output: Enter number of calls : 190 Your bill is Rs.250

Write a program to calculate the total expenses. Quantity and price per item are input by the user and discount of 10% is offered if the expense is more than 7000.

  #include<iostream.h> #include<conio.h> void main() { int totalexp, qty, price, discount; cout<<" Enter quantity: "; cin>>qty; cout<<" Enter price: "; cin>>price; totalexp=qty*price; if (totalexp>7000) { discount=(totalexp*0.1); totalexp=totalexp-discount; } cout<<" Total Expense is Rs. "<<totalexp; getch(); }