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 want to develop application like hootsuite . com

Schedule the FaceBook wall using ASP.Net

main question :

once user login in my system then he need to add his facebook user name and password once then how can i store that user's FB username and password because they need to Schedule and post comments to FaceBook wall so every time user will not login

can any once guide step by step ?

i hope you all help me

Thanks

share|improve this question
StackOverflow is not a code-writing service. Please read the guide to asking a good question and show what you have tried. – RB. Sep 14 '12 at 8:48

1 Answer

once user login in my system then he need to add his facebook user name and password once then how can i store that user's FB username and password

This is completely the wrong approach – FB’s policies discourage users to share their login credentials with third-party services, and if your app will be caught asking for those, it will most likely be disabled quickly.

Get access tokens from the users, and use those to post.

https://developers.facebook.com/docs/authentication/, https://developers.facebook.com/roadmap/offline-access-removal/

share|improve this answer
just need guidance hwo can i schedule fb post from asp.net – Dhaval Gandhi Sep 14 '12 at 11:10
i did not want to store user password in my system but if want to schedule fb post then where it will be store – Dhaval Gandhi Sep 14 '12 at 11:15
The API offers scheduled posts only for pages, not for users – so if you want to implement scheduled posts for users yourself, you have to make sure your script that makes the post is called at the right time – f.e. via a cronjob, that calls the script periodically and has it look up which posts are to make at that point. – CBroe Sep 14 '12 at 11:26
yes i need scheduled posts only for pages for now can you please where i found API for this ? – Dhaval Gandhi Sep 14 '12 at 11:46
show 19 more comments

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.