Skip to content

Instantly share code, notes, and snippets.

@prabirshrestha
Created May 10, 2011 17:42
Show Gist options
  • Save prabirshrestha/964974 to your computer and use it in GitHub Desktop.
Save prabirshrestha/964974 to your computer and use it in GitHub Desktop.
video permissions
protected void Page_Load(object sender, EventArgs e)
{
// http://developers.facebook.com/docs/authentication/permissions/
var auth = new CanvasAuthorizer { Permissions = new[] { "user_videos", "publish_stream" } };
if (auth.Authorize())
{
ShowFacebookContent();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment