//App Token string AccessToken = "41389678736";
try {
var fb = new FacebookClient(AccessToken);
dynamic fbInfo = fb.Post("/v2.2/" + "9192461854" + "/groups", new
{
name = "Create APP Group one",
description = "Create APP Group one",
admin = "14563132194",
});
}
catch (Exception ex) { }
how to Create Group under Facebook APP in ASP.NET
601 Views Asked by Sonu At
1
There are 1 best solutions below
Related Questions in ASP.NET
- Create an IIS web request activity light
- Writing/Overwriting to specific XML file from ASP.NET code behind
- What is the point of definnig Asp.net Intrinsic Objects In different places and what is the different betwen them?
- Deleting Orphans with Fluent NHibernate
- IOrderedEnumerable to vb.net IOrderedEnumerable Conversion
- Entity Framework Code First with Fluent API Concurrency `DbUpdateConcurrencyException` Not Raising
- Getting deeply embedded XML element values
- What is best way to check if any of the property of object is null or empty?
- NuGet - Given a type name or a DLL, how can I find the NuGet package?
- ASP-MVC Code-first migrations checkbox not active
- How do i add onclient click to my jquery button
- Jquery: Change contents of <select> tag dynamically
- Retrieving data from Oracle database
- ASP.NET: Fill Textbox field upon dropdownlist selection by user
- Why web API return 404 when deploy to IIS
Related Questions in FACEBOOK
- Facebook Api - Albums/Photos/Comments
- How to get Facebook subscriber count + friend count
- Firebase facebook authentication not working
- Facebook iOS SDK 4 error info.plist
- Why don't any of my facebook share buttons work?
- Can't perform authentication through facebook with Parse
- PlayN and Firefox issues
- How do I stop the facebook send widget from going off the screen?
- Add extended permissions - Facebook
- Pass image, summary, URL to Facebook share button in ASP.NET MVC
- Facebook Open Graph Description in a message length limitation
- Facebook ShareKit image caption not working
- how to display Notification Count in iOS like Facebook
- How to estimate current situation of an old site not created by myself before i launch my new one?
- Facebook Graph API limit publishing to fan page
Related Questions in FACEBOOK-GRAPH-API
- Facebook Api - Albums/Photos/Comments
- Upload cover photo on facebook fan page
- Add extended permissions - Facebook
- How to get public facebook page's news feed contents without user authentication/access token?
- Facebook Graph API limit publishing to fan page
- Get the relationship status of user's Facebook friends
- Iterating over PagedList result retrieved from the Facebook Graph API
- wordpress : facebook comment
- Is it possible to Login to Facebook using Parse with publish_actions and email permissions?
- Facebook game invitable friends search box
- Encoding for html in Open Graph Facebook attributes
- graph api get public events with rails/koala works only for some sites
- Want to save facebook image into my rails app
- Calling FBSDKGameRequestContent: receiving the invite but not the notification in Facebook
- Facebook page redirecting based on current location
Related Questions in FACEBOOK-GROUP
- Facebook / Javascript API Display all data pulled not working
- Get facebook posts from group from others if I am NOT admin
- Issue a request for a user to join a group?
- Facebook token for searching groups
- Facebook - share post from website
- Facebook Graph API Groups
- Facebook Graph API - group URL to ID
- Facebook group wall on some other website
- FQL Friend's groups
- How do I find my Facebook group ID?
- Attached links to posts in the Graph API
- Is there a way of scraping content from Facebook groups?
- Facebook Group Invite from Website
- Post in Facebook group feed has no "from" field
- FQL and/or Graph Calls only return a limited list of users groups - thoughts?
Related Questions in FACEBOOK-GAME-GROUPS
- Issue a request for a user to join a group?
- How to invite an authed facebook user apps and game group using facebook api?
- Auto join Game Groups
- Facebook Application Group Limitations
- Post stories (through Facebook App and Game Group API) as the app using PHP SDK
- Facebook Graph API error: Application must be whitelisted or users must be testers
- How to restrict a Facebook group to authorized users?
- how to Create Group under Facebook APP in ASP.NET
- Why FBInstant.chooseAsync method not sending game play request to friend?
- Facebook App and Games Groups API - (#3) App must be on whitelist
- Joining an app's group (v2.0 SDK)
- FB.ui callback is not working from 1st Feb 2018
- create facebook-game-groups returns empty dialog
- FB Graph API - (#3) Application must be whitelisted or users must be testers
- Handling Invitations/user management to a multiplayer turn-based game (mobile)
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?

You cannot create a global Facebook Group via the Graph API. See the docs at
If you want to creaete an app group, you could do this via
As stated in the docs, you need an App Access Token for that
You seem to use an invalid Access Token. Try one in the form
app_id|app_secretSee