If I use these parameters and upload image or update status then it is uploading/updating in Audience as Public. But i need to change Audience to only me.
var parameters = new Dictionary<string, object>
{
{ "message", FacebookMessage },
{ "privacy", new Dictionary<string, object>
{
{ "value", "ALL_FRIENDS" }
}
}
};
I tried replacing "ALL_FRIENDS" as "ONLY_ME" but error is thrown.