Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
HTML parsing refers to the process of converting an HTML document to a tree-based Document Object Model with the goal of extracting information.
0
votes
1answer
52 views
Facebook ad preview html snippet
According to facebook's docs, I can get an HTML preview snippet of my ad with this request:
https://graph.facebook.com/CREATIVE_ID/previews?accesstoken=MY_ACCESS_TOKEN
So I did and I got this:
...
0
votes
1answer
198 views
How to get HTML hidden code in a Facebook page
I noticed that in HTML Facebook code page some posts are hidden and they show only when you scroll the page.
Is it possible to get all text posts in a Facebook page, even the text hidden by the ...
1
vote
2answers
285 views
My Objective-C program using regular expression with getting whole HTML but sometimes exception occurs
This is question about Objective-C. I wrote the program that uses regular expression with getting whole HTML. I have uploaded the program to GitHub. However, exception occurs.
The purpose of this ...
5
votes
1answer
517 views
Remotely Scrape Page and Get most Relevant title or Description for Images with XPath
What I'm looking at doing is essentially the same thing a Tweet button or Facebook Share / Like button does, and that is to scrape a page and the most relevant title for a piece of data. The best ...
0
votes
2answers
60 views
Is there anyway for me to grab users' personal interest from Facebook?
I made a recommendation system using collaborative filtering technique and I want to check if my system works well or not.
To do that, I want to collect people's personal interest (such as their ...
0
votes
1answer
287 views
Facebook not reading OpenGraph tags correctly
I am sharing reviews from my page and set the OpenGraph tags according to the rules on OGP[dot]ME
If you go by the Parser @ www[dot]opengraph[dot]in/ then I am specifying my Open Graph tags correctly
...
0
votes
1answer
504 views
Updating Facebook status through Jsoup
I want to update my Facebook status through my Java console application.
I am using Jsoup HTML parser.
First I need to login to the Facebook account.
Document doc = ...
0
votes
1answer
728 views
Posting to Facebook through Graph API - HTML Blog Entry with Inline Images
Let's say there is a blog entry, which you have the HTML for, it looks like this:
<h1>Hi</h1>
<img src="http://thesource.com/someImage.gif"/>
<p>And just a little more text, ...