What you want is not so clear and you've not posted any of your current codes you're using, but i assume you're trying to status update using graph api?
To make status update on your wall, you need access_token and publish_stream permission granted by the user you want to post, here's what facebook's docs say:
Publishing
You can publish to the Facebook graph by issuing HTTP POST requests to
the appropriate connection URLs, using an access token. For example,
you can post a new wall post on Arjun's wall by issuing a POST request
to https://graph.facebook.com/arjun/feed:
curl -F 'access_token=...' \
> -F 'message=Hello, Arjun. I like this new API.' \
> https://graph.facebook.com/arjun/feed
https://developers.facebook.com/docs/reference/api/
If you're using PHP, then i can provide you with a snippet for authentication and for making status update, let me know what you're trying to do more clearly and with the code.