This post basically helps the hacker get message and photos of the posts of a public Facebook page in a fragment.Will soon update the code to allow reading older posts,seeing comments and likes on individual posts.Hope Facebook doesn’t ban it!
Well,this is my first hack in my android development career.So I hope the viewers forgive me for any amateurish approach towards the problem. It all started when I was developing my college app and I wanted to include feeds from my college’s confession page.But due to recent Facebook updates,it only allowed feeds to be extracted after loging into Facebook.I found it a tedious job. After some exhaustive hacking on my laptop and a couple of redbulls,I finally figured out a way to extract the feeds in the JSON format. I have used android volley network library to make http calls and download the images. As volley comes with powerful image caching mechanism, we dont have to much worry about caching the requests and images. I would like to credit Ravi Tamada (Android Hive) for his excellent tutorials. For the Github repo click here. The following steps explain them-
Step 1
Create a Facebook developer account and create a new App Id.
Step 2
Get the App Id and the App secret
Step 3
Get an access token by making a GET request to this url:
Under res -> drawable, create a new file called bg_parent_rounded_corner.xml and paste the below code. This xml will give a rounded corner background to feed item.
bg_parent_rounded_corner.xml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
<?xml version="1.0" encoding="utf-8"?> <shapexmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" > <!-- view background color --> <solidandroid:color="@color/feed_item_bg" > </solid> <!-- view border color and width --> <stroke android:width="@dimen/feed_item_border_width" android:color="@color/feed_item_border" > </stroke> <!-- Here is the corner radius --> <cornersandroid:radius="@dimen/feed_item_corner_radius" > </corners> </shape>
Step 10
Now open your AndroidManifest.xml file and add Application.java class in tag. Also we need to add INTERNET permission as this app makes network calls.
// Chcek for empty status message if (!TextUtils.isEmpty(item.getStatus())) { statusMsg.setText(item.getStatus()); statusMsg.setVisibility(View.VISIBLE); } else { // status is empty, remove from view statusMsg.setVisibility(View.GONE); }
// Making url clickable url.setMovementMethod(LinkMovementMethod.getInstance()); url.setVisibility(View.VISIBLE); } else { // url is null, remove from the view url.setVisibility(View.GONE); }
publicFeedImageView(Context context, AttributeSet attrs, int defStyle){ super(context, attrs, defStyle); }
/** * Sets URL of the image that should be loaded into this view. Note that * calling this will immediately either set the cached image (if available) * or the default image specified by
* * @param url * The URL that should be loaded into this ImageView. * @param imageLoader * ImageLoader that will be used to make the request. */ publicvoidsetImageUrl(String url, ImageLoader imageLoader){ mUrl = url; mImageLoader = imageLoader; // The URL has potentially changed. See if we need to load it. loadImageIfNecessary(false); }
/** * Sets the default image resource ID to be used for this view until the * attempt to load it completes. */ publicvoidsetDefaultImageResId(int defaultImage){ mDefaultImageId = defaultImage; }
/** * Sets the error image resource ID to be used for this view in the event * that the image requested fails to load. */ publicvoidsetErrorImageResId(int errorImage){ mErrorImageId = errorImage; }
/** * Loads the image for the view if it isn't already loaded. * * @param isInLayoutPass * True if this was invoked from a layout pass, false otherwise. */ privatevoidloadImageIfNecessary(finalboolean isInLayoutPass){ finalint width = getWidth(); int height = getHeight();
boolean isFullyWrapContent = getLayoutParams() != null && getLayoutParams().height == LayoutParams.WRAP_CONTENT && getLayoutParams().width == LayoutParams.WRAP_CONTENT; // if the view's bounds aren't known yet, and this is not a // wrap-content/wrap-content // view, hold off on loading the image. if (width == 0 && height == 0 && !isFullyWrapContent) { return; }
// if the URL to be loaded in this view is empty, cancel any old // requests and clear the // currently loaded image. if (TextUtils.isEmpty(mUrl)) { if (mImageContainer != null) { mImageContainer.cancelRequest(); mImageContainer = null; } setDefaultImageOrNull(); return; }
// if there was an old request in this view, check if it needs to be // canceled. if (mImageContainer != null && mImageContainer.getRequestUrl() != null) { if (mImageContainer.getRequestUrl().equals(mUrl)) { // if the request is from the same URL, return. return; } else { // if there is a pre-existing request, cancel it if it's // fetching a different URL. mImageContainer.cancelRequest(); setDefaultImageOrNull(); } }
// The pre-existing content of this view didn't match the current URL. // Load the new image // from the network. ImageContainer newContainer = mImageLoader.get(mUrl, new ImageListener() { @Override publicvoidonErrorResponse(VolleyError error){ if (mErrorImageId != 0) { setImageResource(mErrorImageId); }
if (mObserver != null) { mObserver.onError(); } }
@Override publicvoidonResponse(final ImageContainer response, boolean isImmediate){ // If this was an immediate response that was delivered // inside of a layout // pass do not set the image immediately as it will // trigger a requestLayout // inside of a layout. Instead, defer setting the image // by posting back to // the main thread. if (isImmediate && isInLayoutPass) { post(new Runnable() { @Override publicvoidrun(){ onResponse(response, false); } }); return; }
int bWidth = 0, bHeight = 0; if (response.getBitmap() != null) {
@Override protectedvoidonLayout(boolean changed, int left, int top, int right, int bottom){ super.onLayout(changed, left, top, right, bottom); loadImageIfNecessary(true); }
@Override protectedvoidonDetachedFromWindow(){ if (mImageContainer != null) { // If the view was bound to an image request, cancel it and clear // out the image from the view. mImageContainer.cancelRequest(); setImageBitmap(null); // also clear out the container so we can reload the image if // necessary. mImageContainer = null; } super.onDetachedFromWindow(); }
// Adding request to volley request queue AppController.getInstance().addToRequestQueue(jsonReq); }
mSwipeRefreshLayout = (SwipeRefreshLayout)v.findViewById(R.id.swipeContainer); mSwipeRefreshLayout.setOnRefreshListener(new SwipeRefreshLayout.OnRefreshListener() { @Override publicvoid onRefresh() { //Refreshing data on server feedItems.clear(); JsonObjectRequest jsonReq = new JsonObjectRequest(Method.GET, URL_FEED, null, new Response.Listener<JSONObject>() {