PostToWall Method

Facebook API Wrapper

Collapse image Expand Image Copy image CopyHover image
Posts a status text on behalf of the loggedin user to this user's wall

Namespace: FacebookWrapper.ObjectModel
Assembly: FbGraphApiWrapper (in FbGraphApiWrapper.dll) Version: 6.2.1.2 (6.2.1.2)

Syntax

C#
public Post PostToWall(
	string i_TextToPost
)
Visual Basic
Public Function PostToWall ( _
	i_TextToPost As String _
) As Post
Visual C++
public:
Post^ PostToWall(
	String^ i_TextToPost
)

Parameters

i_TextToPost
Type: System..::..String

[Missing <param name="i_TextToPost"/> documentation for "M:FacebookWrapper.ObjectModel.Group.PostToWall(System.String)"]

Return Value

The newly created Statusobject

Remarks

You can post a status message on behalf of the user by issuing an HTTP POST request to PROFILE_ID/feed

.NET Framework Security

Permission Description
publish_stream

See Also