Facebook requested that I change my design of my application because certain functions become deprecated.
Now I have to ask the user for "publish_stream" permission when he logs in.
When the user allows the permission, he is redirected to the website and everyone's happy. When he doesn't allow -> he is being requested again and again until infinity.
What I want is that this permission will be optional. He will be able to use the application with or without the permission and the application will act accordingly (publish or don't publish the feed).
This is my code on the first page of my application.
<facebook:CanvasIFrameLoginControl runat="server" ID="login"
RequireLogin="true" RequiredPermissions="publish_stream"/>
Help me continue from there... How do I make the permission optional?