In my WordPress website using Wpdevart Facebook comments plugin for embedding Facebook comment. Now I need to extract comment in an XL file. How to I can do it?
I have tried with the https://exportcomments.com tool. It can extract Facebook comment from a website URL. But it's not working properly.
Have any suggestion (code, plugin or tool) to extracting comments from the Facebook app?
That used to be possible up to and including API v3.2, as described under https://developers.facebook.com/docs/plugins/faqs#faq_1603507626630008
The comments for every URL can be accessed via the Graph API. Simply make an HTTP GET request to:
https://graph.facebook.com/v2.6/?fields=og_object{comments}&id=<YOUR_URL>&access_token=<YOUR_TOKEN>
That doesn’t appear to work in v3.3 any more though, only results in an error message saying,
(#100) Tried accessing nonexisting field (comments) on node type (OpenGraphObject)
I can’t find an explicit mention of this in the changelog right now though.
And even in API versions prior to v3.3, it seems you can only get the created time and message (plus maybe a couple of other meta fields), but specifically from – info about the actual user making the comment – is not available any more.
Related
Is there any reason why oEmbed shouldn't be disabled when providing Open Graph tags?
Hi,
I noticed that LinkedIn uses the value from the oEmbed and not the provided Open Graph tags on a WordPress page. To prevent confusion and reduce the http requests, I deregistered the wp-embed scripts. So far I didn't notice anywhere the were missing. Is there a reason why still providing them in 2019 when you have og tags set?
Yes, maybe the reason is Facebook is probably shutting down its API (for giving gour friends’ data to apps)... I read that on the internet.
Facebook OG v3.3 changelog
I am getting this error while trying to submit my website URL
The provided URL is not being accepted because the site has minimal readership, which violates the Instant Article Policies (https://developers.facebook.com/docs/instant-articles/policy/). Please provide a different URL.
I install instant article plugin, kept page ID into it and everything done right.
Your site need a relevant access to be claimed and so post instant articles.
For some reason sharing links on LinkedIn from my client's site does not work.
I've checked the specifications on https://www.linkedin.com/help/linkedin/answer/46687/making-your-website-shareable-on-linkedin?lang=en and it looks like all the og meta tags re correct. Sharing on other social media works without problems. It's only on LinkedIn where the Open Graph data is not picked up.
Here is a sample URL which does not work on LinkedIn:
https://nomadandvillager.com/bestemmingen/kenia/mbara/vrouwenbesnijdenis/
Am I missing something?
Would you be able to share a bit more on how you're getting the tags to render on Facebook and the like?
I encountered the same problem (My site runs on Angular), but my approach was to redirect the LinkedInBot via .htaccess.
Eventually, I gave up, and wrote a custom share button with LinkedIn's rest API
With it, you will be able to specify the details of the share, and avoid the messy workarounds for LinkedIn.
Direct Sharing on LinkedIn
Sharing via REST API
Original link: http://blog.crazy.technology/post/Clash-of-Clans---How-to-use-the-Web-API-570dd2b2
I'm trying to make my website shareable on LinkedIn.
URL : https://www.jedecouvremercator.com/
My website is W3C validate. I have followed all the LinkedIn recommendations and Google recommendations. My Open Graph meta is correct and the website is shareable on all other platforms.
But when I'm trying to share it on LinkedIn or when I use a custom link to share it, LinkedIn can't display the meta information.
(I always use garbage into the URL to kill cache before verifying my changes).
Can somebody tell me why?
Thanks a lot.
The site in your URL is down, and you didn't post any code, so that makes this difficult, but not impossible. I can still view your URL through archive.org, and when I try to share the archive.org URL, like this...
https://www.linkedin.com/sharing/share-offsite/?url=https%3A%2F%2Fweb.archive.org%2Fweb%2F20190618064744%2Fhttps%3A%2F%2Fwww.jedecouvremercator.com%2F
When I click the above, everything works perfectly fine for me. Example:
If you need more info: Official LinkedIn Documentation for Formatting URL and Official LinkedIn Documentation for OpenGraph Tags and Prefilled Sharing.
I'm working on a Wordpress site that uses the plugin Get Directions.
It works properly and gives me the directions in English, but I want to recieve them in Dutch.
I've tried changing the URL from maps.google.com to alternatives like maps.google.nl and maps.google.com?language=nl-nl
Does anyone know how I can get the directions in Dutch? I have also asked on the official Wordpress forums but I don't know how long it usually takes for them to respond.
Seems impossible. The plugin uses the API URL http://www.mapquestapi.com/geocoding/. And checking the documentation, there is a locale parameter for the /directions Web Service, but nothing like this exist for the /geocoding Web Service, which is the one the plugin uses.
Note that the standard locale codes are in the format language_COUNTRY, eg, nl_NL. I tried to modify the plugin code adding &locale=nl_NL(and other languages), but it made no difference.