Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
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.

I am writing an app in which I am allowing user to post a message on friend's wall by using click on ListView Item row.

But now I want to allow the user to write a message to send his/her friend on birth date automatically...

In Short, Send wish to friend automatically on his/her birth date....

I am using below code to Post Message on Wall:

  public void onItemClick(AdapterView<?> adapterView, View view, int position, long id) {
//  Log.d(LOG_TAG, "onItemClick()");

     try {
            final long friendId;
            friendId = jsonArray.getJSONObject(position).getLong("uid");
            String name = jsonArray.getJSONObject(position).getString("name");
            new AlertDialog.Builder(this).setTitle(R.string.post_on_wall_title)
                    .setMessage(String.format(getString(R.string.post_on_wall), name))
                    .setPositiveButton(R.string.yes, new DialogInterface.OnClickListener() {
                        @Override
                        public void onClick(DialogInterface dialog, int which) {
                            Bundle params = new Bundle();

                            params.putString("to", String.valueOf(friendId));
                            params.putString("caption", getString(R.string.app_name));
                            params.putString("description", getString(R.string.app_desc));
                            params.putString("picture", FacebookUtility.HACK_ICON_URL);
                            params.putString("name", getString(R.string.app_action));
                            FacebookUtility.facebook.dialog(FriendsList.this, "feed", params,
                                    (DialogListener) new PostDialogListener());
                        }

                    }).setNegativeButton(R.string.no, null).show();
        } catch (JSONException e) {
            showToast("Error: " + e.getMessage());
        }
    }

    public class PostDialogListener extends BaseDialogListener {
        @Override
        public void onComplete(Bundle values) {
            final String postId = values.getString("post_id");
            if (postId != null) {
                showToast("Message posted on the wall.");
            } else {
                showToast("No message posted on the wall.");
            }
        }
    }

    public void showToast(final String msg) {

        mHandler.post(new Runnable() {
            @Override
            public void run() {
                Toast toast = Toast.makeText(FriendsList.this, msg, Toast.LENGTH_LONG);
                toast.show();
            }
        });
    }

I need guidance, to send message on birthday date automatically....

share|improve this question
do you have active user access token of sender? – derki Jan 15 at 11:39
@derki actually i am using these permissions: String[] facebook_permissions = { "user_photos", "user_birthday", "friends_birthday", "friends_photos", "read_stream", "offline_access" }; – Liza Jan 15 at 11:45
offline access is no longer working while using with fb app, see: developers.facebook.com/roadmap/offline-access-removal . Thats why i was asking if you have valid (not expired) access_token of that user – derki Jan 15 at 11:47
@derki ok i got that, but what i have to do if i want to post on wall today and it will appear on birth date on my friend's wall like still able to post on wall.... – Liza Jan 15 at 11:51
1  
you need to post it exactly on that day. – derki Jan 15 at 11:58
show 2 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.