{"id":32453,"date":"2025-10-08T00:14:40","date_gmt":"2025-10-07T17:14:40","guid":{"rendered":"https:\/\/dps.media\/?page_id=32453"},"modified":"2025-10-11T21:54:39","modified_gmt":"2025-10-11T14:54:39","slug":"facebook-post-id-finder-tool","status":"publish","type":"page","link":"https:\/\/dps.media\/en\/facebook-post-id-finder-tool\/","title":{"rendered":"Facebook Post ID Retrieval Tool"},"content":{"rendered":"<?xml encoding=\"utf-8\" ?><style>\r\n  .box { background:#fff; padding:20px 30px; border-radius:12px; box-shadow:0 4px 15px rgba(0,0,0,.08); width:100%; max-width:720px; margin:auto; font-family:system-ui,sans-serif; }\r\n  h2{margin:0 0 12px}\r\n  .row{display:flex;gap:10px}\r\n  input[type=\"url\"]{flex:1; padding:12px 14px; border:1px solid #d1d5db; border-radius:10px; font-size:15px}\r\n  button{padding:12px 16px; border:0; border-radius:10px; cursor:pointer}\r\n  .btn{background:#2563eb; color:#fff}\r\n  .btn.secondary{background:#eef2ff; color:#111}\r\n  .msg{margin-top:10px; font-weight:600}\r\n  .ok{color:#16a34a} .err{color:#dc2626}\r\n  .grid{display:grid; grid-template-columns:160px 1fr; gap:8px 12px; margin-top:14px; padding:12px; background:#f8fafc; border:1px dashed #e5e7eb; border-radius:10px}\r\n  .label{color:#6b7280}\r\n  pre{background:#0b1020; color:#e5e7eb; padding:12px; border-radius:10px; margin-top:12px; overflow:auto; max-height:45svh}\r\n  .toolbar{display:flex; gap:8px; align-items:center; margin-top:8px}\r\n<\/style><div class=\"box\">\r\n  <h2>Get Social Post ID<\/h2>\r\n  <div class=\"row\">\r\n    <input type=\"url\" id=\"linkInput\" placeholder=\"Enter the link to process (https:\/\/\u2026)\" required>\r\n    <button class=\"btn\" id=\"sendBtn\">Send<\/button>\r\n  <\/div>\r\n  <div id=\"msg\" class=\"msg\"><\/div>\r\n\r\n  <!-- K\u1ebft qu\u1ea3 r\u00fat g\u1ecdn (c\u00e1c field ch\u00ednh) -->\r\n  <div id=\"kv\" class=\"grid\" style=\"display:none\">\r\n    <div class=\"label\">success<\/div><div id=\"f_success\"><\/div>\r\n    <div class=\"label\">id<\/div><div id=\"f_id\"><\/div>\r\n    <div class=\"label\">link<\/div><div id=\"f_link\"><\/div>\r\n    <div class=\"label\">share_type<\/div><div id=\"f_share_type\"><\/div>\r\n    <div class=\"label\">name<\/div><div id=\"f_name\"><\/div>\r\n    <div class=\"label\">code<\/div><div id=\"f_code\"><\/div>\r\n    <div class=\"label\">post_id<\/div><div id=\"f_post_id\"><\/div>\r\n  <\/div>\r\n\r\n  <div class=\"toolbar\">\r\n    <strong>Copy result<\/strong>\r\n    <button class=\"btn secondary\" id=\"copyBtn\" title=\"Copy JSON\">Copy<\/button>\r\n  <\/div>\r\n  <pre id=\"raw\">No data yet\u2026<\/pre>\r\n<\/div><script>\r\nconst WEBHOOK_URL = \"https:\/\/auto.dps.io.vn\/webhook\/ddfa6029-217d-43f3-9e3c-60261129cf5b\";\r\nconst $ = (s)=>document.querySelector(s);\r\n$(\"#sendBtn\").addEventListener(\"click\", send);\r\n$(\"#copyBtn\").addEventListener(\"click\", copyRaw);\r\n\r\nasync function send(){\r\n  const link = $(\"#linkInput\").value.trim();\r\n  const msg = $(\"#msg\");\r\n  const kv = $(\"#kv\");\r\n  const raw = $(\"#raw\");\r\n  kv.style.display = \"none\";\r\n  raw.textContent = \"\u23f3 DPS.MEDIA \u0111ang x\u1eed l\u00fd\u2026\";\r\n  msg.className = \"msg\";\r\n\r\n  if(!link){\r\n    msg.textContent = \"\u274c Vui l\u00f2ng nh\u1eadp link tr\u01b0\u1edbc khi g\u1eedi!\";\r\n    msg.classList.add(\"err\");\r\n    raw.textContent = \"\u2014\";\r\n    return;\r\n  }\r\n\r\n  try{\r\n    const url = `${WEBHOOK_URL}?link=${encodeURIComponent(link)}`;\r\n    const res = await fetch(url, { method: \"GET\", mode: \"cors\" });\r\n    const text = await res.text();\r\n    let data; try{ data = JSON.parse(text) } catch{ data = { raw:text } }\r\n\r\n    if(res.ok){\r\n      msg.textContent = \"\u2705 K\u1ebft qu\u1ea3!\";\r\n      msg.classList.add(\"ok\");\r\n    }else{\r\n      msg.textContent = `\u26a0\ufe0f L\u1ed7i (HTTP ${res.status})`;\r\n      msg.classList.add(\"err\");\r\n    }\r\n\r\n    \/\/ Hi\u1ec3n th\u1ecb JSON \u0111\u1ea7y \u0111\u1ee7\r\n    raw.textContent = JSON.stringify(data, null, 2);\r\n\r\n    \/\/ Hi\u1ec3n th\u1ecb c\u00e1c field ch\u00ednh n\u1ebfu t\u1ed3n t\u1ea1i\r\n    const get = (k)=> (data?.[k] ?? \"\");\r\n    setField(\"f_success\", get(\"success\"));\r\n    setField(\"f_id\", get(\"id\"));\r\n    setField(\"f_link\", get(\"link\"));\r\n    setField(\"f_share_type\", get(\"share_type\"));\r\n    setField(\"f_name\", get(\"name\"));\r\n    setField(\"f_code\", get(\"code\"));\r\n    setField(\"f_post_id\", get(\"post_id\"));\r\n\r\n    const hasAny = [\"success\",\"id\",\"link\",\"share_type\",\"name\",\"code\",\"post_id\"]\r\n      .some(k => data && data[k] !== undefined && data[k] !== null && String(data[k])!==\"\");\r\n    kv.style.display = hasAny ? \"grid\" : \"none\";\r\n\r\n  }catch(err){\r\n    msg.textContent = `\u274c L\u1ed7i: ${err.message}`;\r\n    msg.classList.add(\"err\");\r\n    raw.textContent = \"\u2014\";\r\n  }\r\n}\r\n\r\nfunction setField(id, val){\r\n  const el = $(\"#\"+id);\r\n  if(id===\"f_link\" && val){\r\n    el.innerHTML = `<a href=\"${val}\" target=\"_blank\" rel=\"noopener\">${val}`;\r\n  }else{\r\n    el.textContent = val ?? \"\";\r\n  }\r\n}\r\n\r\nasync function copyRaw(){\r\n  const raw = $(\"#raw\").textContent;\r\n  try{\r\n    await navigator.clipboard.writeText(raw);\r\n  }catch{\r\n    alert(\"Kh\u00f4ng copy \u0111\u01b0\u1ee3c, vui l\u00f2ng ch\u1ecdn v\u00e0 copy th\u1ee7 c\u00f4ng.\");\r\n  }\r\n}\r\n<\/script><h1 class=\"wp-block-heading\">\ud83e\udde9 Get Facebook Post ID \u2013 Fast, Accurate &amp; Free Online Tool<\/h1><p>In the digital age, managing, promoting, and analyzing content on Facebook is becoming increasingly important. Whether you are a <strong>marketer, developer, or business owner<\/strong>, sometimes you need to <strong>get the Facebook post ID<\/strong> to embed, advertise, or integrate with other systems.<br>Instead of searching manually in complex source code, <strong>our Facebook Post ID Retrieval Tool<\/strong> helps you perform this task <strong>in just a few seconds \u2013 fast, accurate, and completely free<\/strong>.<\/p><hr class=\"wp-block-separator has-alpha-channel-opacity\"><h2 class=\"wp-block-heading\">1\ufe0f\u20e3 What is a Facebook Post ID?<\/h2><p>Each post on Facebook is assigned a <strong>unique identifier (Post ID)<\/strong> \u2013 this is a string of numbers that helps Facebook's system accurately identify and retrieve that post.<br>For example: in the URL <code>https:\/\/www.facebook.com\/username\/posts\/1234567890<\/code>, the part <strong>\u201c1234567890\u201d<\/strong> is the post ID.<\/p><p><strong>Post ID<\/strong> is very important when you need to:<\/p><ul class=\"wp-block-list\">\n<li>Embed the post on a website or landing page.<\/li>\n\n\n\n<li>Track interactions (likes, comments, shares).<\/li>\n\n\n\n<li>Create a \u201cboost post\u201d ad campaign using the post ID.<\/li>\n\n\n\n<li>Connect APIs, automate posting processes, or measure content effectiveness.<\/li>\n<\/ul><hr class=\"wp-block-separator has-alpha-channel-opacity\"><h2 class=\"wp-block-heading\">2\ufe0f\u20e3 Introduction to the Facebook Post ID Finder tool<\/h2><p><strong>Facebook Post ID Finder<\/strong> is <strong>free online tool<\/strong> allows you to extract the ID of any post simply by pasting the link (URL).<br>The tool was developed with the goal: <strong>simplify the process \u2013 anyone can use it, no technical knowledge required.<\/strong><\/p><h3 class=\"wp-block-heading\">\ud83d\udd27 Highlighted features:<\/h3><ul class=\"wp-block-list\">\n<li><strong>Automatic analysis of Facebook post URLs<\/strong> (supports personal posts, Fanpages, and public groups).<\/li>\n\n\n\n<li><strong>Accurate ID extraction<\/strong> even with link formats containing <code>story_fbid<\/code>, <code>post_id<\/code>, or <code>permalink<\/code>.<\/li>\n\n\n\n<li><strong>User-friendly interface<\/strong>, easy to use on both computers and phones.<\/li>\n\n\n\n<li><strong>No login required<\/strong>, ensuring safety &amp; privacy.<\/li>\n\n\n\n<li><strong>Supports multiple links at once<\/strong> (upgraded version).<\/li>\n\n\n\n<li><strong>Results displayed clearly<\/strong>, just 1 click to copy the ID.<\/li>\n<\/ul><hr class=\"wp-block-separator has-alpha-channel-opacity\"><h2 class=\"wp-block-heading\">3\ufe0f\u20e3 How to use the tool<\/h2><h3 class=\"wp-block-heading\">\ud83d\udc63 Steps to follow:<\/h3><ol class=\"wp-block-list\">\n<li>Visit the page <strong>Facebook Post ID Finder<\/strong>.<\/li>\n\n\n\n<li>Paste the Facebook post link you want to get the ID from into the input box.<\/li>\n\n\n\n<li>Press <strong>\u201cGet ID\u201d<\/strong>.<\/li>\n\n\n\n<li>The system will analyze the link and display <strong>Exact post ID<\/strong> in a split second.<\/li>\n\n\n\n<li>Copy the ID to use in your campaign or application.<\/li>\n<\/ol><blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>\u26a0\ufe0f Note: If the post is set to private, is in a closed group, or has been deleted, the tool may not be able to access the data to return the ID.<\/p>\n<\/blockquote><hr class=\"wp-block-separator has-alpha-channel-opacity\"><h2 class=\"wp-block-heading\">4\ufe0f\u20e3 Benefits of using the Facebook Post ID Finder tool<\/h2><figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Benefit<\/th><th>Description<\/th><\/tr><\/thead><tbody><tr><td>\u23f1 <strong>Time saving<\/strong><\/td><td>No need to search manually, just paste the link to get results.<\/td><\/tr><tr><td>\ud83c\udfaf <strong>High accuracy<\/strong><\/td><td>Supports various Facebook URL formats.<\/td><\/tr><tr><td>\ud83d\udd10 <strong>Absolute security<\/strong><\/td><td>No login or account access required.<\/td><\/tr><tr><td>\ud83d\udca1 <strong>User-friendly<\/strong><\/td><td>Clear, easy-to-understand interface design, suitable even for beginners.<\/td><\/tr><tr><td>\ud83d\ude80 <strong>Advanced support<\/strong><\/td><td>Easily used for advertising, SEO, or API integration purposes.<\/td><\/tr><\/tbody><\/table><\/figure><hr class=\"wp-block-separator has-alpha-channel-opacity\"><h2 class=\"wp-block-heading\">5\ufe0f\u20e3 Practical applications of Facebook Post ID<\/h2><ul class=\"wp-block-list\">\n<li><strong>Marketer<\/strong>: Use the post ID to run engagement-boosting ads (Boost Post).<\/li>\n\n\n\n<li><strong>Business<\/strong>: Embed product introduction posts on the website.<\/li>\n\n\n\n<li><strong>Developer<\/strong>: Connect to the Facebook API for data statistics or automation.<\/li>\n\n\n\n<li><strong>Page Owner \/ Group Admin<\/strong>: Manage multiple posts, get IDs to filter data efficiently.<\/li>\n<\/ul><hr class=\"wp-block-separator has-alpha-channel-opacity\"><h2 class=\"wp-block-heading\">6\ufe0f\u20e3 SEO optimization for the keyword \u201cGet Facebook Post ID\u201d<\/h2><p>Users often search with phrases:<\/p><ul class=\"wp-block-list\">\n<li>\u201cget facebook post id\u201d<\/li>\n\n\n\n<li>\u201cget facebook post id online\u201d<\/li>\n\n\n\n<li>\u201ctool to get facebook post id\u201d<\/li>\n\n\n\n<li>\u201chow to get fb post id\u201d<\/li>\n\n\n\n<li>\u201cget facebook post id\u201d<\/li>\n<\/ul><p>This tool is SEO-optimized to help you easily find it, with fast processing speed and 100% accurate results.<\/p><hr class=\"wp-block-separator has-alpha-channel-opacity\"><h2 class=\"wp-block-heading\">7\ufe0f\u20e3 Privacy policy &amp; commitment<\/h2><ul class=\"wp-block-list\">\n<li>Does not store user input data or URLs.<\/li>\n\n\n\n<li>Does not require Facebook login or access permissions.<\/li>\n\n\n\n<li>100% safe and transparent during use.<\/li>\n<\/ul><hr class=\"wp-block-separator has-alpha-channel-opacity\"><h2 class=\"wp-block-heading\">8\ufe0f\u20e3 Conclusion<\/h2><p><strong>Facebook Post ID Finder<\/strong> is an indispensable tool for anyone working with Facebook \u2013 from fanpage admins to advertisers or developers.<br>With a user-friendly interface, instant processing speed, and high accuracy, you can get the post ID in just <strong>a simple operation<\/strong>.<\/p><p>\ud83d\udc49 <strong>Try the Facebook Post ID Finder tool now<\/strong> \u2013 Experience speed, convenience, and accuracy in just a few seconds!<\/p>","protected":false},"excerpt":{"rendered":"<p>\ud83e\udde9 L\u1ea5y ID B\u00e0i Vi\u1ebft Facebook \u2013 C\u00f4ng C\u1ee5 Tr\u1ef1c Tuy\u1ebfn Nhanh, Ch\u00ednh X\u00e1c &amp; Mi\u1ec5n Ph\u00ed Trong th\u1eddi \u0111\u1ea1i s\u1ed1, vi\u1ec7c qu\u1ea3n l\u00fd, qu\u1ea3ng b\u00e1 v\u00e0 ph\u00e2n t\u00edch n\u1ed9i dung tr\u00ean Facebook ng\u00e0y c\u00e0ng tr\u1edf n\u00ean quan tr\u1ecdng. D\u00f9 b\u1ea1n l\u00e0 marketer, l\u1eadp tr\u00ecnh vi\u00ean hay ch\u1ee7 doanh nghi\u1ec7p, \u0111\u00f4i khi b\u1ea1n c\u1ea7n l\u1ea5y [&hellip;]<\/p>","protected":false},"author":3,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-32453","page","type-page","status-publish","hentry"],"acf":[],"rankmath_keywords":{"primary":"L\u1ea5y ID B\u00e0i Vi\u1ebft Facebook","secondary":[""]},"yoast_keywords":{"primary":"","secondary":[]},"yoast_focuskw":"","rankmath_focuskw":"L\u1ea5y ID B\u00e0i Vi\u1ebft Facebook","seo_keywords":{"primary":"L\u1ea5y ID B\u00e0i Vi\u1ebft Facebook","secondary":[""]},"_links":{"self":[{"href":"https:\/\/dps.media\/en\/wp-json\/wp\/v2\/pages\/32453","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/dps.media\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/dps.media\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/dps.media\/en\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/dps.media\/en\/wp-json\/wp\/v2\/comments?post=32453"}],"version-history":[{"count":9,"href":"https:\/\/dps.media\/en\/wp-json\/wp\/v2\/pages\/32453\/revisions"}],"predecessor-version":[{"id":32493,"href":"https:\/\/dps.media\/en\/wp-json\/wp\/v2\/pages\/32453\/revisions\/32493"}],"wp:attachment":[{"href":"https:\/\/dps.media\/en\/wp-json\/wp\/v2\/media?parent=32453"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}