Return-path: <noreply@facebookmail.com>
Envelope-to: fb@vin-fm.com
Delivery-date: Mon, 08 Apr 2013 21:26:13 +0700
Received: from outmail012.snc7.facebook.com ([69.171.232.146]:44039 helo=mx-out.facebook.com)
	by server01-iix.secureserver.web.id with esmtp (Exim 4.80)
	(envelope-from <noreply@facebookmail.com>)
	id 1UPD1Q-0008Te-Hn
	for fb@vin-fm.com; Mon, 08 Apr 2013 21:26:13 +0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=facebookmail.com;
	s=s1024-2011-q2; t=1365430766;
	bh=fIKxKaIajn7TjpqfiP1fGcxR63cqe2rSIFfWzk0d2gQ=;
	h=Date:To:From:Subject:MIME-Version:Content-Type;
	b=Mya4y+Kgs2AWth4N+FtIA/MuGxGuo3RTP19Los5pEZcnN660ANGpDbXPNvd0gvJGO
	 NJa3yp/im3M02+TbBTW4tOBvSRMfAcqZDcudq94Mhs2vgQdKlb3C2tO7VV90x1mlQP
	 Db/8Gzmci8BAFAxDsECqt7L/U7Icx+ORcQ5UItAU=
Received: from [10.79.27.43] ([10.79.27.43:42490])
	by smout008.snc7.facebook.com (envelope-from <noreply@facebookmail.com>)
	(ecelerity 3.5.1.37927 r(/root/Momo-dev:tip)) with ECSTREAM
	id DC/62-08830-DE1D2615; Mon, 08 Apr 2013 07:19:26 -0700
X-Facebook: from zuckmail ([MTI3LjAuMC4x]) 
	by async.facebook.com with HTTP (ZuckMail);
Date: Mon, 8 Apr 2013 07:19:25 -0700
To: fb@vin-fm.com
From: "Facebook" <noreply@facebookmail.com>
Subject: Developer Blog Weekly Digest for Apr 8, 2013
Message-ID: <17f11f450b7da847989a95f9396b8ff8@async.facebook.com>
X-Priority: 3
X-Mailer: ZuckMail [version 1.00]
X-Facebook-Notify: ; mailid=
X-FACEBOOK-PRIORITY: 0
X-Auto-Response-Suppress: All
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="b1_17f11f450b7da847989a95f9396b8ff8"


--b1_17f11f450b7da847989a95f9396b8ff8
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

Halo Vincent,

Here are all the posts from the Developer Blog in the last week.

Facebook Home, 5 April pukul 1:00
Published by Jenny Yuen

Today we announced Facebook Home on Android, which is the mobile =
experience designed to put your friends at the center of your phone. For =
developers, Home enables new ways to surface your content to help people =
discover your app and reengage with existing users. These include:

Cover feed: With Home, people can immediately access your app content from =
their News Feed once they turn on their phone. We also make it easy for =
people to engage with your content as they can simply double tap to like a =
post and comment right from cover feed. At launch, Open Graph stories with =
user generated photos will be supported in cover feed. Click here for a =
complete list of the story types that cover feed supports now.

Notifications: People will receive bigger, bolder notifications from you =
right on their phone home screen. We=E2=80=99ve made improvements to =
notifications to make them more engaging and easier for people to interact =
with. It=E2=80=99s never been easier to reengage with people using your =
app.

Chat heads: We=E2=80=99ve optimized messaging so that people can =
seamlessly receive messages in a non-intrusive fashion while they're using =
your apps. This will help improve engagement as it lets people jump in and =
out of conversations without ever having to leave your app.

App launcher: Home=E2=80=99s launcher makes it easy for people to get to =
your apps quickly. People choose what's on their app launcher and =
it=E2=80=99s simple for them to get your app in there.






 Cover feed


Notifications

Chat heads







We=E2=80=99re excited to give you new ways to engage with people through =
Home. This release is a first step and we'll continue to improve Home - =
including enabling support for additional Open Graph story types. Learn =
more about Home.


----------

New APIs for Comment Replies, 4 April pukul 7:38
Published by Alex Madjar

Last week, we launched comment replies on Facebook pages and profiles with =
more than 10,000 followers.  This allows businesses and celebrities to =
engage with their fans more directly.  Today, we=E2=80=99re updating the =
API so developers can build tools that make it easier for brands to =
monitor and respond to comment replies.



API Updates

Our API now supports different "views" of the comments on posts through =
our updated comments API and FQL comment table.

Top Level Comments

The first view of the comments on a post is called "top level".  The =
comments that are on the post (and are not replies to individual comments) =
are called "top level comments."  Top level comments may be ranked, =
depending on the post and the number of top level comments on that post so =
far.

The top level view of comments corresponds to what a user would see on =
Facebook.  To get the top level view of comments in Graph API:

GET {object_id}/comments?filter=3Dtoplevel

In FQL, you can issue the request:


SELECT id, fromid, time, text, likes=20
FROM comment=20
WHERE object_id=3D{object_id} AND parent_id=3D'0'


Replies

Comments on comments are called "replies."  You get replies by querying =
for the comments on a comment id.

Graph API:

GET {comment_id}/comments

FQL:


SELECT id, fromid, time, text, likes=20
FROM comment=20
WHERE parent_id=3D{comment_id}

Comment Stream

Another view of the comments on a post is the "stream".  The comments =
"stream" gives all comments (top level and replies to comments) together.  =
The "stream" view provides comments in chronological order, so it's easy =
for you to just get what's new.

Graph API:

GET {object_id}/comments?filter=3Dstream

FQL:


SELECT id, fromid, time, text, likes=20
FROM comment=20
WHERE object_id=3D{object_id}=20
ORDER BY time

Getting Started with the APIs

To get started today with the new APIs, opt into the "July 2013 Breaking =
Changes" migration for your app by visiting the Advanced tab of your app =
dashboard.

If you're currently using our existing comments APIs, here are a few =
changes to keep in mind:


'comments' field from 'stream' FQL table is deprecated.  Please use =
the'comment_info' column to fetch the 'can_comment' and 'comment_count' =
fields.
We are removing the fields on the FQL 'comment' table that were used =
exclusively for legacy Comments Plugins -- 'xid', 'reply_xid', 'username' =
and 'comments'.
We are removing the undocumented 'count' field on the 'comments' =
connection in the Graph API.  Please request =
'{id}/comments?summary=3Dtrue' explicitly if you would like the summary =
field which contains the count (now called 'total_count')


Please read the documentation for details on how to use these new features =
and the Roadmap for details on the API changes.

We're excited to continue working with you, our community of developers, =
to improve the quality of the conversations happening on Facebook and =
can't wait to see what you build.


----------

Platform Updates: Operation Developer Love, 4 April pukul 7:27
Published by Sean Quinlan



Since last Wednesday's post, we announced all the events in April we will =
be attending.

Defaulting new apps to sandbox mode

Starting today, all newly created apps will be in "sandbox mode" by =
default. This hides your app for people not listed as admins, developers =
or testers, so you can build your app without worrying about other people =
accessing it. When you are ready to take your app live, sandbox mode can =
be toggled off in the basic settings area of the App Dashboard.

Image requirements for the new News Feed

We are rolling out the new design for News Feed, which is optimized for =
sharing high-resolution images of Open Graph, feed, and share stories on =
web and mobile. To prepare for a broader roll-out of the new design, =
images must be at least 200x200 pixels for desktop web and ideally, =
600x600 pixels or greater for the best experience across devices.

Images may not appear in the new design if they are smaller than 200x200 =
pixels, and rectangular photos may be cropped.

Image requirements include:=20
* 4 Megapixel limit
* 5MB limit
* direct links to the image only
* only JPG, PNG, GIF, or BMP file formats

We strongly encourage you to make sure your images meet these =
requirements, so that the rollout does not negatively impact your app.

April 2013 breaking changes

As announced in January, the following change has gone into effect =
permanently for everyone starting today:


  Removing ability to POST to USER_ID/questions=20
  As it's no longer possible for users to create questions, we will remove =
this functionality from the Graph API. POSTs to USER_ID/questions will =
fail.


July 2013 breaking changes (90-day notice)

The following changes can be enabled/disabled using the "July 2013 =
Breaking Changes" migration until July 10th when they will go into effect =
permanently for everyone:


  Social plugins will require an absolute URL in the 'href' parameter=20
  Social plugins, such as the Like Box and Like Button, will require an =
absolute URL in the 'href' parameter.
 =20
  Page 'category' field name change
  We are renaming the 'category' field to 'category_lists' for Pages Graph =
API
 =20
  Stream table will throw exception with invalid filter_key
  Query stream_filter table for a set of valid stream filters.  The stream =
table will throw an exception if called with an invalid 'filter_key' =
option.
 =20
  Removing 'publish_checkins' permissions
  Publishing a Checkin object is deprecated in favor of creating an Open =
Graph story with a location attached. You can also create a Post with a =
location attached using the 'publish_action' permission.
 =20
  FQL Checkin table 'page_id' change
  We are renaming 'page_id' to 'target_id' for the Checkin table.
 =20
  Removing 'version' field for Groups
  We introduced 'version' field to indicate whether the group was created =
prior to launch of the current groups product in October 2010.  We are =
removing this field as all Groups on Facebook are now the same version. =
This impacts both Group Graph API and Group FQL Table.
 =20
  Photos will no longer return larger sizes than the uploaded version =20
  'images' field in photos and photo_src table will no longer return image =
sizes larger than the original uploaded version of the photo.
 =20
  Cannot create multiple create actions for the same Open Graph object =20
  We are no longer allowing multiple create actions for the same Open =
Graph object, as documented here.
 =20
  Deprecating 'comments' field from 'stream' FQL table   =20
  We are deprecating the 'comments' field from 'stream' FQL table.  Please =
select the 'comment_info' column to fetch the 'can_comment' and =
'comment_count' fields (formerly called 'can_post' and 'count'), and use =
the comment table directly to retrieve the list of comments.
 =20
  Removing 'xid', 'reply_xid', 'username' and 'comments' from 'comment' =
FQL table
  We are removing the fields on the FQL 'comment' table that were used =
exclusively for legacy Comments Plugins -- 'xid', 'reply_xid', 'username' =
and 'comments'.  We now treat comments the same across plugins and within =
Facebook. Please query for comment replies left on the plugin the same way =
as you would for other comments.
 =20
  Removing 'count' from 'comments' Graph API connection
  We are removing the undocumented 'count' field on the 'comments' =
connection in the Graph API.  Please request =
'{id}/comments?summary=3Dtrue' explicitly if you would like the summary =
field which contains the count (now called 'total_count')


The following changes will go into effect on July 10, 2013:


  Mobile App Install Ads change
  We are updating the Creative Spec parameter 'app_platform_type' to =
'mobile_store'.  The possible values for mobile_store are now "itunes", =
"itunes_ipad", and "google_play".
 =20
  Conversion spec and tracking pixel ID changes
  We are deprecating the use of 'tracking_pixel_id' when specifying the =
desire to track a conversion pixel in an ad. You should instead specify =
the pixel in the newly launched tracking_specs field.
  We are also deprecating the use of conversion specs in bid types that =
are not optimized for actions (e.g. CPM, CPC, and oCPM when no bid value =
is placed on actions). You should instead use tracking_specs to track =
conversions for these bid types.
 =20
  Custom Audiences change
  We have changed the targeting spec parameter 'excluded_user_adclusters' =
to be 'excluded_custom_audiences'. Additionally, the endpoint to create =
and retrieve your custom audiences is now: =
https://graph.facebook.com/(act_adaccountid)/customaudiences.
 =20
  Accessing link stats change =20
  App access tokens will be required for accessing the link_stat FQL =
table.  App access tokens will also be required for retrieving data from =
Graph API endpoint for link stats, ie: =
http://graph.facebook.com/?id=3Dhttp://example.com.
 =20
  Graph API search changes
  App access tokens will be required for all search Graph API calls except =
Places and Pages.  Search for application will no longer be supported.
 =20
  Open Graph apps using custom actions for fitness, books, movies, and TV
  As announced in March, any apps that previously used custom actions to =
represent this type of sharing will need to move to common actions by July =
10, 2013.
 =20
  Removing 'page_friends_of_fans' metric
  We are removing the metric: 'page_friends_of_fans' from the Insights =
Dashboard and the Insights API.
 =20
  Removing the ability to "Select All" or "Pre-Select" for Requests
  As part of our efforts to improve user sentiment, we have updated our =
platform policy so that apps may not offer a select all option or =
pre-select multiple recipients to receive requests. Other Request dialog =
functionality will remain the same.


Weekly stats

The following stats are for activity between 03/27/2013-04/03/2013:

Bugs activity


185 bugs were created
34 bugs were assigned
179 bugs were resolved
30 bugs were fixed
149 bug were were duplicate, invalid, or by design


Bugs fixed


500 Error on oauth
Custom Audience gone, recieving error #U8I8
New news feed doesn't add fb_action_ids and fb_ref to outbound links
Apostrophe showing hex code in recommendatrions box
Stories published via feed dialog no longer appear in the news feed or =
games feed
Recommentations Plugin - Querystring
Error in related questions
FB.getLoginStatus/ auth.statusChange not firing in Galaxy S3 native =
browser
auth_type=3Dreauthenticate not prompting users to enter password
URGENT: App Settings Not Saving
payment_success variable not found
Related questions links are broken
Image not shown
Unclear distinction between screenshot examples for Action Tagging and =
Mention Tagging
500 error on bugs search
Sending a User to Login with OAuth gives them a "Not Logged In" Page
mobile Feed and bookmark links route players to App Store instead of the =
app
Typo - change 'user' to 'request'
Auth fails when app doesn't support backgrounding in iOS SDK=20
Update adgroup with pagepost creative : wrong post is assigned
No Activity At App Timeline
Missing image for 'Server-side Login' section.
Need to mention caveat for posting to a friend's wall related to Timeline =
privacy settings
Out-of-date screenshot.
Missing double quote symbol (")
"What's New in 3.2" iOS SDK page points to 3.2 SDK package, but 3.2.1 is =
available
Character encoding is no longer being returned for content type for /me =
graph call
Error in code js
Inconsistent Page insights after end_date 2013-03-13T07:00:00
Oauth returning a server error page on both new authentications and =
existing logins. Started around 9pm CST on May 26, 2013


Activity on facebook.stackoverflow.com


321 questions asked
49 questions with a score of 1 or greater
15 answered, 31% answered rate
26 replied, 53% reply rate



----------

=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D

___________________
This message was intended for fb&#064;vin-fm.com. Anda menerima surel ini =
karena anda telah memilih untuk menerima pembaruan pengembang dari =
Facebook. Ingin mengendalikan pembaruan pengembang mana saja yang anda =
terima? Pergi ke:
http://developers.facebook.com/settings
Facebook, Inc., Attention: Department 415, PO Box 10005, Palo Alto, CA =
94303


--b1_17f11f450b7da847989a95f9396b8ff8
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional //EN">
<html><head><meta http-equiv=3D"Content-Type" content=3D"text/html; =
charset=3Dutf-8"><title>Facebook</title></head><body style=3D"margin: 0; =
padding: 0;" dir=3D"ltr"><table width=3D"98%" border=3D"0" =
cellspacing=3D"0" cellpadding=3D"40"><tr><td bgcolor=3D"#f7f7f7" =
width=3D"100%" style=3D"font-family:'lucida =
grande',tahoma,verdana,arial,sans-serif;"><table cellpadding=3D"0" =
cellspacing=3D"0" border=3D"0" width=3D"750"><tr><td style=3D"background:#=
3b5998;color:#FFFFFF;font-weight:bold;font-family:'lucida =
grande',tahoma,verdana,arial,sans-serif;vertical-align:middle;padding:4px =
8px; font-size: 16px; letter-spacing: -0.03em; text-align: =
left;">facebook</td><td style=3D"background:#3b5998;color:#FFFFFF;font-wei=
ght:bold;font-family:'lucida =
grande',tahoma,verdana,arial,sans-serif;vertical-align:middle;padding:4px =
8px;font-size: 11px; text-align: right;"></td></tr><tr><td colspan=3D"2" =
style=3D"background-color: #FFFFFF; border-bottom: 1px solid #3b5998; =
border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding: =
15px;font-family:'lucida grande',tahoma,verdana,arial,sans-serif;" =
valign=3D"top"><table width=3D"100%" cellpadding=3D"0" =
cellspacing=3D"0"><tr><td width=3D"500" style=3D"font-size:12px;" =
valign=3D"top" align=3D"left"><div style=3D"margin-bottom:15px; =
font-size:12px;font-family:'lucida =
grande',tahoma,verdana,arial,sans-serif;">Halo Vincent,</div><div =
style=3D"margin-bottom:15px;">Here are all the posts from the Developer =
Blog in the last week.</div><div style=3D"margin-bottom:15px;"><div =
style=3D"border-bottom: 1px solid #ccc; line-height:5px;">&nbsp;</div><br =
/><table><tr><td style=3D"vertical-align: top;"><a =
style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"http://www.facebook.com/jenny.yuen" ><img style=3D"border: none; =
padding-top: 4px; 0px none;" alt=3D"Jenny Yuen" src=3D"http://profile.ak.f=
bcdn.net/hprofile-ak-ash4/369710_10716490_1088004956_q.jpg" /></a></td><td =
style=3D"vertical-align: top;"><div><h3 style=3D"margin-top: 0px; =
font-size: 14px; "><a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"http://developers.facebook.com/blog/post/2013/04/04/facebook-home/=
" >Facebook Home</a></h3></div><div style=3D"color: #666666; font-size: =
10px;">5 April pukul 1:00</div><div style=3D"color: #666666; font-size: =
10px;"> Published by <a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"http://www.facebook.com/jenny.yuen" >Jenny =
Yuen</a></div></td></tr></table><p>Today we announced <a =
style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"http://newsroom.fb.com/News/597/Introducing-Home" >Facebook =
Home</a> on Android, which is the mobile experience designed to put your =
friends at the center of your phone. For developers, Home enables new ways =
to surface your content to help people discover your app and reengage with =
existing users. These include:</p>

<p><strong>Cover feed</strong>: With Home, people can immediately access =
your app content from their News Feed once they turn on their phone. We =
also make it easy for people to engage with your content as they can =
simply double tap to like a post and comment right from cover feed. At =
launch, Open Graph stories with user generated photos will be supported in =
cover feed. Click <a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/docs/cover-feed/" >here</a> for a =
complete list of the story types that cover feed supports now.</p>

<p><strong>Notifications:</strong> People will receive bigger, bolder =
notifications from you right on their phone home screen. We=E2=80=99ve =
made improvements to notifications to make them more engaging and easier =
for people to interact with. It=E2=80=99s never been easier to reengage =
with people using your app.</p>

<p><strong>Chat heads</strong>: We=E2=80=99ve optimized messaging so that =
people can seamlessly receive messages in a non-intrusive fashion while =
they're using your apps. This will help improve engagement as it lets =
people jump in and out of conversations without ever having to leave your =
app.</p>

<p><strong>App launcher</strong>: Home=E2=80=99s launcher makes it easy =
for people to get to your apps quickly. People choose what's on their app =
launcher and it=E2=80=99s simple for them to get your app in there.</p>

<p><center></p>

<table class=3D"uiGrid">
<tr>
<td>
<div style=3D"text-align: center;"><img class=3D"border" =
src=3D"http://dragon.ak.fbcdn.net/cfs-ak-ash3/676615/222/291900154275939-/=
a_coverfeed.jpg" width=3D"200" height=3D"350"> <br><i><c>Cover =
feed</i></div>
</td>
<td>
<div style=3D"text-align: center;"><img class=3D"border" =
src=3D"http://dragon.ak.fbcdn.net/cfs-ak-ash3/676459/150/433960373364320-/=
a_notification.jpg" width=3D"200" =
height=3D"350"align=3D"bottom"><br><i>Notifications</i></div>
<td>
<div style=3D"text-align: center;"><img class=3D"border" =
src=3D"http://dragon.ak.fbcdn.net/cfs-ak-ash3/676482/615/315403468587827-/=
b_Spotify.jpeg" width=3D"200" height=3D"350"align=3D"bottom"><br><i>Chat =
heads</i></div>
</td>
</td>
</tr>
</table>

<p></center></p>

<p>We=E2=80=99re excited to give you new ways to engage with people =
through Home. This release is a first step and we'll continue to improve =
Home - including enabling support for additional Open Graph story types. =
<a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://www.facebook.com/help/facebookhome" >Learn more</a> about =
Home.</p>
<br /><div style=3D"border-bottom: 1px solid #ccc; =
line-height:5px;">&nbsp;</div><br /><table><tr><td =
style=3D"vertical-align: top;"><a =
style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"http://www.facebook.com/alex.madjar" ><img style=3D"border: none; =
padding-top: 4px; 0px none;" alt=3D"Alex Madjar" src=3D"http://profile.ak.=
fbcdn.net/hprofile-ak-prn1/572883_544337805_1996914577_q.jpg" =
/></a></td><td style=3D"vertical-align: top;"><div><h3 =
style=3D"margin-top: 0px; font-size: 14px; "><a =
style=3D"color:#3b5998;text-decoration:none;" . href=3D"http://developers.=
facebook.com/blog/post/2013/04/03/new-apis-for-comment-replies/" >New APIs =
for Comment Replies</a></h3></div><div style=3D"color: #666666; font-size: =
10px;">4 April pukul 7:38</div><div style=3D"color: #666666; font-size: =
10px;"> Published by <a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"http://www.facebook.com/alex.madjar" >Alex =
Madjar</a></div></td></tr></table><p>Last week, we <a =
style=3D"color:#3b5998;text-decoration:none;" . href=3D"https://www.facebo=
ok.com/notes/facebook-journalists/improving-conversations-on-facebook-with=
-replies/578890718789613" >launched</a> comment replies on Facebook pages =
and profiles with more than 10,000 followers.  This allows businesses and =
celebrities to engage with their fans more directly.  Today, we=E2=80=99re =
<a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/docs/graphapi/guides/comments/" =
>updating the API</a> so developers can build tools that make it easier =
for brands to monitor and respond to comment replies.</p>

<p><img src=3D"http://dragon.ak.fbcdn.net/cfs-ak-ash3/676429/549/330199683=
768540-/delta-4.jpg"></p>

<div style=3D"font-size: 12px; font-weight: bold; margin-bottom =3D 0px; =
margin-top =3D 0px;">API Updates</div>

<p>Our API now supports different "views" of the comments on posts through =
our updated <a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/docs/reference/api/Comment/" =
>comments API</a> and <a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/docs/reference/fql/comment" >FQL =
comment table</a>.</p>

<p><b>Top Level Comments</b></p>

<p>The first view of the comments on a post is called "top level".  The =
comments that are on the post (and are not replies to individual comments) =
are called "top level comments."  Top level comments may be ranked, =
depending on the post and the number of top level comments on that post so =
far.</p>

<p>The top level view of comments corresponds to what a user would see on =
Facebook.  To get the top level view of comments in Graph API:</p>

<pre>GET {object_id}/comments?filter=3Dtoplevel</pre>

<p>In FQL, you can issue the request:</p>

<pre>
SELECT id, fromid, time, text, likes=20
FROM comment=20
WHERE object_id=3D{object_id} AND parent_id=3D'0'
</pre>

<p><b>Replies</b></p>

<p>Comments on comments are called "replies."  You get replies by querying =
for the comments on a comment id.</p>

<p>Graph API:</p>

<pre>GET {comment_id}/comments</pre>

<p>FQL:</p>

<pre>
SELECT id, fromid, time, text, likes=20
FROM comment=20
WHERE parent_id=3D{comment_id}</pre>

<p><b>Comment Stream</b></p>

<p>Another view of the comments on a post is the "stream".  The comments =
"stream" gives all comments (top level and replies to comments) together.  =
The "stream" view provides comments in chronological order, so it's easy =
for you to just get what's new.</p>

<p>Graph API:</p>

<pre>GET {object_id}/comments?filter=3Dstream</pre>

<p>FQL:</p>

<pre>
SELECT id, fromid, time, text, likes=20
FROM comment=20
WHERE object_id=3D{object_id}=20
ORDER BY time</pre>

<p><b>Getting Started with the APIs</b></p>

<p>To get started today with the new APIs, opt into the "July 2013 =
Breaking Changes" migration for your app by visiting the Advanced tab of =
your app dashboard.</p>

<p>If you're currently using our existing comments APIs, here are a few =
changes to keep in mind:</p>

<ul>
<li><p>'comments' field from 'stream' FQL table is deprecated.  Please use =
the'comment_info' column to fetch the 'can_comment' and 'comment_count' =
fields.</p></li>
<li><p>We are removing the fields on the FQL 'comment' table that were =
used exclusively for legacy <a =
style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/docs/reference/plugins/comments/" =
>Comments Plugins</a> -- 'xid', 'reply_xid', 'username' and =
'comments'.</p></li>
<li><p>We are removing the undocumented 'count' field on the 'comments' =
connection in the Graph API.  Please request =
'{id}/comments?summary=3Dtrue' explicitly if you would like the summary =
field which contains the count (now called 'total_count')</p></li>
</ul>

<p>Please read <a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/docs/graphapi/guides/comments/#thr=
eaded" >the documentation</a> for details on how to use these new features =
and the <a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/roadmap" >Roadmap</a> for details =
on the API changes.</p>

<p>We're excited to continue working with you, our community of =
developers, to improve the quality of the conversations happening on =
Facebook and can't wait to see what you build.</p>
<br /><div style=3D"border-bottom: 1px solid #ccc; =
line-height:5px;">&nbsp;</div><br /><table><tr><td =
style=3D"vertical-align: top;"><a =
style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"http://www.facebook.com/SBQuinlan" ><img style=3D"border: none; =
padding-top: 4px; 0px none;" alt=3D"Sean Quinlan" src=3D"http://profile.ak=
.fbcdn.net/hprofile-ak-snc7/275347_6400518_776814970_q.jpg" /></a></td><td =
style=3D"vertical-align: top;"><div><h3 style=3D"margin-top: 0px; =
font-size: 14px; "><a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"http://developers.facebook.com/blog/post/2013/04/03/platform-updat=
es--operation-developer-love/" >Platform Updates: Operation Developer =
Love</a></h3></div><div style=3D"color: #666666; font-size: 10px;">4 April =
pukul 7:27</div><div style=3D"color: #666666; font-size: 10px;"> Published =
by <a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"http://www.facebook.com/SBQuinlan" >Sean =
Quinlan</a></div></td></tr></table><p><img src=3D"http://dragon.ak.fbcdn.n=
et/cfs-ak-ash4/84991/988/455427864509068-/oper_dev_love.png" =
style=3D"float:right;margin-left:17px;margin-right:15px;margin-top:-10px" =
height=3D"180" /></p>

<p>Since <a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/blog/post/2013/03/27/platform-upda=
tes--operation-developer-love/" >last Wednesday's post</a>, we announced =
all the <a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/blog/post/2013/03/29/april-develop=
er-events/" >events in April</a> we will be attending.</p>

<div style=3D"font-size: 12px; font-weight: bold; margin-bottom =3D 0px; =
margin-top =3D 0px;">Defaulting new apps to sandbox mode</div>

<p>Starting today, all newly created apps will be in "sandbox mode" by =
default. This hides your app for people not listed as admins, developers =
or testers, so you can build your app without worrying about other people =
accessing it. When you are ready to take your app live, sandbox mode can =
be toggled off in the basic settings area of the <a =
style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/apps" >App Dashboard</a>.</p>

<div style=3D"font-size: 12px; font-weight: bold; margin-bottom =3D 0px; =
margin-top =3D 0px;">Image requirements for the new News Feed</div>

<p>We are rolling out the <a style=3D"color:#3b5998;text-decoration:none;" =
. href=3D"https://developers.facebook.com/blog/post/2013/03/07/get-to-know=
-the-new-design-for-news-feed/" >new design for News Feed</a>, which is =
optimized for sharing high-resolution images of Open Graph, feed, and =
share stories on web and mobile. To prepare for a broader roll-out of the =
new design, images must be at least 200x200 pixels for desktop web and =
ideally, 600x600 pixels or greater for the best experience across =
devices.</p>

<p>Images may not appear in the new design if they are smaller than =
200x200 pixels, and rectangular photos may be cropped.</p>

<p>Image requirements include:=20
* 4 Megapixel limit
* 5MB limit
* direct links to the image only
* only JPG, PNG, GIF, or BMP file formats</p>

<p>We strongly encourage you to make sure your images meet these =
requirements, so that the rollout does not negatively impact your app.</p>

<div style=3D"font-size: 12px; font-weight: bold; margin-bottom =3D 0px; =
margin-top =3D 0px;">April 2013 breaking changes</div>

<p>As <a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/blog/post/2013/01/02/platform-upda=
tes--operation-developer-love/" >announced in January</a>, the following =
change has gone into effect permanently for everyone starting today:</p>

<blockquote>
  <p><strong>Removing ability to POST to USER_ID/questions</strong> <!-- =
D659069 --><br />
  As it's no longer possible for users to create questions, we will remove =
this functionality from the Graph API. <code>POST</code>s to =
<code>USER_ID/questions</code> will fail.</p>
</blockquote>

<div style=3D"font-size: 12px; font-weight: bold; margin-bottom =3D 0px; =
margin-top =3D 0px;">July 2013 breaking changes (90-day notice)</div>

<p>The following changes can be enabled/disabled using the "July 2013 =
Breaking Changes" <a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/roadmap/migrations" >migration</a> =
until July 10th when they will go into effect permanently for =
everyone:</p>

<blockquote>
  <p><strong>Social plugins will require an absolute URL in the 'href' =
parameter</strong> <!-- --><br />
  <a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/docs/plugins/" >Social =
plugins</a>, such as the Like Box and Like Button, will require an =
absolute URL in the 'href' parameter.</p>
 =20
  <p><strong>Page 'category' field name change</strong><br />
  We are renaming the 'category' field to 'category_lists' for <a =
style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/docs/reference/api/page/" >Pages =
Graph API</a></p>
 =20
  <p><strong>Stream table will throw exception with invalid =
filter_key</strong><br />
  Query <a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/docs/reference/fql/stream_filter" =
>stream_filter</a> table for a set of valid stream filters.  The <a =
style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/docs/reference/fql/stream" =
>stream</a> table will throw an exception if called with an invalid =
'filter_key' option.</p>
 =20
  <p><strong>Removing 'publish_checkins' permissions</strong><br />
  Publishing a Checkin object is deprecated in favor of creating an Open =
Graph story with a <a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/docs/opengraph/guides/tagging/#pla=
ces" >location</a> attached. You can also create a Post with a location =
attached using the 'publish_action' permission.</p>
 =20
  <p><strong>FQL Checkin table 'page_id' change</strong><br />
  We are renaming 'page_id' to 'target_id' for the <a =
style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/docs/reference/fql/checkin" =
>Checkin</a> table.</p>
 =20
  <p><strong>Removing 'version' field for Groups</strong><br />
  We introduced 'version' field to indicate whether the group was created =
prior to launch of the current groups product in October 2010.  We are =
removing this field as all Groups on Facebook are now the same version. =
This impacts both <a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/docs/reference/api/group/" >Group =
Graph API</a> and <a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/docs/reference/fql/group" >Group =
FQL Table</a>.</p>
 =20
  <p><strong>Photos will no longer return larger sizes than the uploaded =
version</strong>  <!--D705261 ben g--><br />
  'images' field in <a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/docs/reference/fql/photo" =
>photos</a> and <a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/docs/reference/fql/photo" =
>photo_src</a> table will no longer return image sizes larger than the =
original uploaded version of the photo.</p>
 =20
  <p><strong>Cannot create multiple create actions for the same Open Graph =
object</strong>  <!--clang--><br />
  We are no longer allowing multiple create actions for the same Open =
Graph object, as documented <a =
style=3D"color:#3b5998;text-decoration:none;" . href=3D"https://developers=
.facebook.com/docs/opengraph/creating-object-types/" >here</a>.</p>
 =20
  <p><strong>Deprecating 'comments' field from 'stream' FQL table</strong> =
   <!--alex m t=3D2013872--><br />
  We are deprecating the 'comments' field from 'stream' FQL table.  Please =
select the 'comment_info' column to fetch the 'can_comment' and =
'comment_count' fields (formerly called 'can_post' and 'count'), and use =
the comment table directly to retrieve the list of comments.</p>
 =20
  <p><strong>Removing 'xid', 'reply_xid', 'username' and 'comments' from =
'comment' FQL table</strong><br />
  We are removing the fields on the FQL 'comment' table that were used =
exclusively for legacy <a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/docs/reference/plugins/comments/" =
>Comments Plugins</a> -- 'xid', 'reply_xid', 'username' and 'comments'.  =
We now treat comments the same across plugins and within Facebook. Please =
query for comment replies left on the plugin <a =
style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/docs/graphapi/guides/comments/" =
>the same way</a> as you would for other comments.</p>
 =20
  <p><strong>Removing 'count' from 'comments' Graph API =
connection</strong><br />
  We are removing the undocumented 'count' field on the 'comments' =
connection in the Graph API.  Please request =
'{id}/comments?summary=3Dtrue' explicitly if you would like the summary =
field which contains the count (now called 'total_count')</p>
</blockquote>

<p>The following changes will go into effect on July 10, 2013:</p>

<blockquote>
  <p><strong>Mobile App Install Ads change</strong><br />
  We are updating the <a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/docs/reference/ads-api/mobile-app-=
ads/" >Creative Spec</a> parameter 'app_platform_type' to 'mobile_store'.  =
The possible values for mobile_store are now "itunes", "itunes_ipad", and =
"google_play".</p>
 =20
  <p><strong>Conversion spec and tracking pixel ID changes</strong><br />
  We are deprecating the use of 'tracking_pixel_id' when specifying the =
desire to track a <a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/docs/reference/ads-api/offsite-pix=
els/" >conversion pixel</a> in an ad. You should instead specify the pixel =
in the newly launched <a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/docs/reference/ads-api/tracking-sp=
ecs/" >tracking_specs</a> field.
  We are also deprecating the use of <a =
style=3D"color:#3b5998;text-decoration:none;" . href=3D"https://developers=
.facebook.com/docs/reference/ads-api/conversion-specs/" >conversion =
specs</a> in bid types that are not optimized for actions (e.g. CPM, CPC, =
and oCPM when no bid value is placed on actions). You should instead use =
<a style=3D"color:#3b5998;text-decoration:none;" . href=3D"https://develop=
ers.facebook.com/docs/reference/ads-api/tracking-specs/" =
>tracking_specs</a> to track conversions for these bid types.</p>
 =20
  <p><strong>Custom Audiences change</strong><br />
  We have changed the targeting spec parameter 'excluded_user_adclusters' =
to be 'excluded_custom_audiences'. Additionally, the endpoint to create =
and retrieve your custom audiences is now: =
https://graph.facebook.com/(act_adaccountid)/customaudiences.</p>
 =20
  <p><strong>Accessing link stats change</strong>  <!-- D725097 ben =
g--><br />
  App access tokens will be required for accessing the <a =
style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/docs/reference/fql/link_stat" =
>link_stat</a> FQL table.  App access tokens will also be required for =
retrieving data from Graph API endpoint for link stats, ie: =
http://graph.facebook.com/?id=3Dhttp://example.com.</p>
 =20
  <p><strong>Graph API search changes</strong><br />
  App access tokens will be required for all search Graph API calls except =
Places and Pages.  Search for application will no longer be supported.</p>
 =20
  <p><strong>Open Graph apps using custom actions for fitness, books, =
movies, and TV</strong><br />
  As <a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/blog/post/2013/03/08/improving-fac=
ebook-for-books--movies--tv-and-fitness/" >announced</a> in March, any =
apps that previously used custom actions to represent this type of sharing =
will need to move to common actions by July 10, 2013.</p>
 =20
  <p><strong>Removing 'page_friends_of_fans' metric</strong><br />
  We are removing the metric: 'page_friends_of_fans' from the Insights =
Dashboard and the <a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/docs/reference/api/insights/" =
>Insights API</a>.</p>
 =20
  <p><strong>Removing the ability to "Select All" or "Pre-Select" for =
Requests</strong><br />
  As part of our efforts to improve user sentiment, we have <a =
style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/policy/#integration" >updated our =
platform policy</a> so that apps may not offer a select all option or =
pre-select multiple recipients to receive requests. Other Request dialog =
functionality will remain the same.</p>
</blockquote>

<div style=3D"font-size: 12px; font-weight: bold; margin-bottom =3D 0px; =
margin-top =3D 0px;">Weekly stats</div>

<p>The following stats are for activity between 03/27/2013-04/03/2013:</p>

<div style=3D"font-size: 12px; font-weight: bold; margin-bottom =3D 0px; =
margin-top =3D 0px;">Bugs activity</div>

<ul>
<li>185 bugs were created</li>
<li>34 bugs were assigned</li>
<li>179 bugs were resolved</li>
<li>30 bugs were fixed</li>
<li>149 bug were were duplicate, invalid, or by design</li>
</ul>

<div style=3D"font-size: 12px; font-weight: bold; margin-bottom =3D 0px; =
margin-top =3D 0px;">Bugs fixed</div>

<ul>
<li><a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/bugs/491147611024519" >500 Error =
on oauth</a></li>
<li><a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/bugs/177473999071134" >Custom =
Audience gone, recieving error #U8I8</a></li>
<li><a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/bugs/347476982025045" >New news =
feed doesn't add fb_action_ids and fb_ref to outbound links</a></li>
<li><a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/bugs/395855933842907" >Apostrophe =
showing hex code in recommendatrions box</a></li>
<li><a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/bugs/287926901339101" >Stories =
published via feed dialog no longer appear in the news feed or games =
feed</a></li>
<li><a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/bugs/448557431887681" =
>Recommentations Plugin - Querystring</a></li>
<li><a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/bugs/151864388314974" >Error in =
related questions</a></li>
<li><a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/bugs/567636106594783" =
>FB.getLoginStatus/ auth.statusChange not firing in Galaxy S3 native =
browser</a></li>
<li><a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/bugs/234154500049016" =
>auth_type=3Dreauthenticate not prompting users to enter password</a></li>
<li><a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/bugs/527947997249079" >URGENT: App =
Settings Not Saving</a></li>
<li><a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/bugs/496747960382668" =
>payment_success variable not found</a></li>
<li><a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/bugs/149921945177076" >Related =
questions links are broken</a></li>
<li><a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/bugs/433910443365492" >Image not =
shown</a></li>
<li><a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/bugs/132940236866577" >Unclear =
distinction between screenshot examples for Action Tagging and Mention =
Tagging</a></li>
<li><a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/bugs/153094761524425" >500 error =
on bugs search</a></li>
<li><a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/bugs/452609994811240" >Sending a =
User to Login with OAuth gives them a "Not Logged In" Page</a></li>
<li><a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/bugs/508973302471621" >mobile Feed =
and bookmark links route players to App Store instead of the app</a></li>
<li><a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/bugs/262354153900679" >Typo - =
change 'user' to 'request'</a></li>
<li><a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/bugs/414563691940501" >Auth fails =
when app doesn't support backgrounding in iOS SDK </a></li>
<li><a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/bugs/487558181293618" >Update =
adgroup with pagepost creative : wrong post is assigned</a></li>
<li><a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/bugs/181549808659781" >No Activity =
At App Timeline</a></li>
<li><a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/bugs/309451802515796" >Missing =
image for 'Server-side Login' section.</a></li>
<li><a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/bugs/351599684940061" >Need to =
mention caveat for posting to a friend's wall related to Timeline privacy =
settings</a></li>
<li><a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/bugs/588663764494842" >Out-of-date =
screenshot.</a></li>
<li><a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/bugs/140408596137281" >Missing =
double quote symbol (")</a></li>
<li><a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/bugs/145589702283286" >"What's New =
in 3.2" iOS SDK page points to 3.2 SDK package, but 3.2.1 is =
available</a></li>
<li><a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/bugs/591239150904917" >Character =
encoding is no longer being returned for content type for /me graph =
call</a></li>
<li><a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/bugs/499731660064288" >Error in =
code js</a></li>
<li><a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/bugs/601773126503581" =
>Inconsistent Page insights after end_date 2013-03-13T07:00:00</a></li>
<li><a style=3D"color:#3b5998;text-decoration:none;" . =
href=3D"https://developers.facebook.com/bugs/351159891656707" >Oauth =
returning a server error page on both new authentications and existing =
logins. Started around 9pm CST on May 26, 2013</a></li>
</ul>

<div style=3D"font-size: 12px; font-weight: bold; margin-bottom =3D 0px; =
margin-top =3D 0px;">Activity on facebook.stackoverflow.com</div>

<ul>
<li>321 questions asked</li>
<li>49 questions with a score of 1 or greater</li>
<li>15 answered, 31% answered rate</li>
<li>26 replied, 53% reply rate</li>
</ul>
<br /><div style=3D"border-bottom: 1px solid #ccc; =
line-height:5px;">&nbsp;</div><br /></div><div =
style=3D"margin-bottom:15px;"></div></td><td valign=3D"top" width=3D"250" =
style=3D"padding-left: 15px;" align=3D"left"><table width=3D"100%" =
cellspacing=3D"0" cellpadding=3D"0"><tr><td style=3D"border-left: 1px =
solid #D7D7D7; padding: 0 15px 10px 20px;"><div style=3D"margin-bottom: =
15px;"><div style=3D"font-size: 14px; font-weight: bold; line-height: =
1.3em;" > Recent News </div><br/><div style =3D"font-size: 12px; =
font-weight: bold; line-height: 1.5em;" ><a href=3D"http://developers.face=
book.com/blog/post/2013/04/04/facebook-home/" =
style=3D"color:#3b5998;text-decoration:none;">Facebook Home</a></div><span =
style=3D"color: #666666; font-size: 10px;" >4 April =
2013</span><br/><br/><div style=3D"font-size: 12px; font-weight: bold; =
line-height: 1.5em;" ><a href=3D"http://developers.facebook.com/blog/post/=
2013/04/03/new-apis-for-comment-replies/" =
style=3D"color:#3b5998;text-decoration:none;">New APIs for Comment =
Replies</a></div><span style=3D"color: #666666; font-size: 10px;" >3 April =
2013</span><br/><br/><div style=3D"font-size: 12px; font-weight: bold; =
line-height: 1.5em;" ><a href=3D"http://developers.facebook.com/blog/post/=
2013/04/03/platform-updates--operation-developer-love/" =
style=3D"color:#3b5998;text-decoration:none;">Platform Updates: Operation =
Developer Love</a></div><span style=3D"color: #666666; font-size: 10px;" =
>3 April =
2013</p></div></td></tr></table></td></tr></table></td></tr><tr><td =
colspan=3D"2" style=3D"color:#999999;padding:10px;font-size:12px; =
font-family:'lucida grande',tahoma,verdana,arial,sans-serif;"><br/>This =
message was intended for fb&#064;vin-fm.com. Anda menerima surel ini =
karena anda telah memilih untuk menerima pembaruan pengembang dari =
Facebook. Ingin mengendalikan pembaruan pengembang mana saja yang anda =
terima? Pergi ke:<br/><a href=3D"http://developers.facebook.com/settings">=
http://developers.facebook.com/settings</a><br/>Facebook, Inc., Attention: =
Department 415, PO Box 10005, Palo Alto, CA =
94303<br/></td></tr></table></td></tr></table></body></html>



--b1_17f11f450b7da847989a95f9396b8ff8--

