skip to Main Content

.htaccess redirect facebook crawlers except privacy policy

I have a SPA app with dynamic content for sharing on Facebook so I am redirecting Facebook crawlers to a nice static page using the following rule in htaccess: <IfModule mod_rewrite.c> RewriteCond %{HTTP_USER_AGENT} ^facebookexternalhit.*$ RewriteRule ^(.*)$ https://sharing.mysite.tld/api/share/$1 [L] This works…

VIEW QUESTION

social share button in angular 10 ngx-sharebuttons – Telegram API

I am implementing the ngx-sharebuttons for social share button like facebook, whatsapp. this is what I tried installed package npm i cdk npm i ngx-sharebuttons npm i @fortawesome/fontawesome-svg-core @fortawesome/angular-fontawesome @fortawesome/free-solid-svg-icons @fortawesome/free-brands-svg-icons import { ShareButtonsModule } from 'ngx-sharebuttons/buttons'; import { ShareIconsModule…

VIEW QUESTION

"(# 100) You must provide an application access token or user access token who owns or is the developer of the application" (see Description)?

I make a request to find out the data about my user access token: fetch("https://graph.facebook.com/v8.0/debug_token?input_token=" + access_token).then(function (response) { response.text().then(function (textII) { alert(textII); }); }); In this case, I take the accessToken value from auth Response after authorization to the…

VIEW QUESTION
Back To Top
Search