Blogger পোস্ট Google এ দ্রুত ইনডেক্স করার সহজ উপায় (Colab + Indexing API ফুল গাইড) - Ak Freelancing Park
Notification texts go here Contact Us Download Now!

Blogger পোস্ট Google এ দ্রুত ইনডেক্স করার সহজ উপায় (Colab + Indexing API ফুল গাইড)

Blogger fast indexing, Blogger indexing API, Google indexing API Blogger, Blogger Google Search Console, Blogger SEO tips, How to index Blogger post f
AKFP
Please wait 0 seconds...
Scroll Down and click on Go to Link for destination
Congrats! Link is Generated
Blogger পোস্ট Google এ দ্রুত ইনডেক্স করার সহজ উপায় (Colab + Indexing API ফুল গাইড)
Blogger পোস্ট Google এ দ্রুত ইনডেক্স করার সম্পূর্ণ গাইড (Google Cloud + Google Colab দিয়ে Indexing API ব্যবহার)-
অনেকেই Blogger-এ নতুন পোস্ট করার পর দেখে থাকেন যে, সেটা Google-এ ২-৩ দিনেও দেখা যাচ্ছে না। এর কারণ হলো Googlebot আপনার সাইটের নতুন আপডেট ধরতে সময় নেয়। তবে আপনি চাইলে Google এর Indexing API ব্যবহার করে পোস্ট কয়েক মিনিটে ইনডেক্স করাতে পারেন!

এই গাইডে শিখবেন কিভাবে আপনি Google Cloud Console, Colab, Search Console এবং Indexing API ব্যবহার করে অটোমেটেডভাবে দ্রুত Blogger পোস্ট ইনডেক্স করাতে পারেন।



ধাপ ১: Google Search Console-এ Blogger সাইট যুক্ত করা-
1. যান ➤ https://search.google.com/search-console
2. “Add Property” এ ক্লিক করুন
3. URL Prefix অপশন দিন (যেমন: https://yourblog.blogspot.com/)
4. Verification Method: HTML Tag নির্বাচন করুন
5. Blogger ড্যাশবোর্ডে যান → Theme > Edit HTML → <head> ট্যাগের নিচে কোডটি পেস্ট করুন
6. এরপর Search Console-এ ফিরে গিয়ে “Verify” বাটনে ক্লিক করুন

এখন আপনার Blogger সাইট Search Console-এর সাথে যুক্ত হলো।

ধাপ ২: Google Cloud Console-এ নতুন প্রজেক্ট তৈরি-
1. যান ➤ https://console.cloud.google.com/
2. উপরে “Select Project” > “New Project” ক্লিক করে একটি প্রজেক্ট তৈরি করুন
➤ উদাহরণ: blog-index-bot
3. Project তৈরি হলে সেটি সিলেক্ট করে Dashboard-এ যান

ধাপ ৩: Indexing API চালু করা-
1. Navigation Menu → APIs & Services → Library
2. সার্চ করুন “Indexing API”
3. “Indexing API” সিলেক্ট করে ➤ Enable করুন

ধাপ ৪: Service Account ও Key তৈরি-
1. Navigation Menu → IAM & Admin → Service Accounts
2. “Create Service Account” ক্লিক করুন
Name: index-bot
Description: For Blogger Indexing
3. Role দিন ➤ Project > Owner
4. Done এ ক্লিক করে অ্যাকাউন্ট তৈরি করুন
5. এরপর নতুন তৈরি হওয়া অ্যাকাউন্টের ডানদিকে ক্লিক করে ➤ Keys > Add Key > JSON

একটি .json ফাইল ডাউনলোড হবে — এটিই ব্যবহার করবেন কোডে

ধাপ ৫: Search Console-এ Service Account যুক্ত করা-
1. আবার যান ➤ Google Search Console
2. Settings > Users & Permissions → Add User
3. “Email” ফিল্ডে আপনার Service Account এর ইমেইল দিন
➤ যেমন: index-bot@blog-index-bot.iam.gserviceaccount.com
4. Permission দিন ➤ Full



ধাপ ৬: Google Colab দিয়ে পোস্ট ইনডেক্স করা-
1. যান ➤ https://colab.research.google.com/
2. নিচের Python কোডটি নতুন নোটবুকে পেস্ট করুন
!pip install --upgrade google-api-python-client google-auth-httplib2 google-auth-oauthlib

import json
from google.oauth2 import service_account
from googleapiclient.discovery import build

# JSON ফাইলের নাম (Colab এ আপলোড করতে হবে)
KEY_FILE_LOCATION = 'your-key-file.json'

SCOPES = ["https://www.googleapis.com/auth/indexing"]
credentials = service_account.Credentials.from_service_account_file(
    KEY_FILE_LOCATION, scopes=SCOPES)

service = build('indexing', 'v3', credentials=credentials)

# Blogger পোস্টের লিংক দিন
url = "https://yourblog.blogspot.com/2025/07/your-post-title.html"

body = {
  "url": url,
  "type": "URL_UPDATED"
}

response = service.urlNotifications().publish(body=body).execute()
print(response)

ফাইল আপলোড করতে:
Colab > বাম পাশের ফাইল আইকনে ক্লিক করুন → .json ফাইল আপলোড করুন

ইনডেক্সিং সফল হলে রেসপন্স আসবে:

{
  "url": "https://yourblog.blogspot.com/2025/07/your-post-title.html",
  "type": "URL_UPDATED",
  "notifyTime": "2025-07-18T11:30:00Z"
}

🛠 একাধিক পোস্ট ইনডেক্স করতে চাইলে:

urls = [
    "https://yourblog.blogspot.com/2025/07/post-1.html",
    "https://yourblog.blogspot.com/2025/07/post-2.html",
    "https://yourblog.blogspot.com/2025/07/post-3.html"
]

for url in urls:
    body = {"url": url, "type": "URL_UPDATED"}
    response = service.urlNotifications().publish(body=body).execute()
    print(f"{url} -> {response}")

💡 অতিরিক্ত টিপস:
১. পোস্ট করার পরই এই স্ক্রিপ্ট রান করলে ৫-১৫ মিনিটের মধ্যে Google Search এ দেখা যাবে।
২. একবার সেটআপ করলেই পরবর্তী বার শুধুই URL বসিয়ে রান করা লাগবে।
৩. আপনি চাইলে টেলিগ্রাম বট বা ওয়েব ফর্ম দিয়েও ইনডেক্সিং সাবমিট করতে পারেন।

উপসংহার:
এই গাইড অনুসরণ করে আপনি Blogger এর প্রতিটি পোস্ট গুগলে দ্রুত ইনডেক্স করাতে পারবেন — SEO বাড়বে, ট্রাফিক বাড়বে, এবং ব্লগ দ্রুত গুগলে র‍্যাংক করবে।



পোস্ট ট্যাগ:
Blogger fast indexing, Blogger indexing API, Google indexing API Blogger, Blogger Google Search Console, Blogger SEO tips, How to index Blogger post fast, Blogspot fast Google indexing, Google Colab indexing Blogger, Blogger post submit to Google API, Search Console API Blogger

إرسال تعليق

Oops!
It seems there is something wrong with your internet connection. Please connect to the internet and start browsing again.
AdBlock Detected!
We have detected that you are using adblocking plugin in your browser.
The revenue we earn by the advertisements is used to manage this website, we request you to whitelist our website in your adblocking plugin.
Site is Blocked
Sorry! This site is not available in your country.