Once the user authorizes/or does not authorize your app, he is redirected to the "redirect_uri" that you specified in authentication url.
If the user presses Don't Allow, your app is not authorized. The OAuth Dialog will redirect (via HTTP 302) the user's browser to the URL you passed in the redirect_uri parameter with the following error information:
http://YOUR_URL?error_reason=user_denied&
error=access_denied&error_description=The+user+denied+your+request.
If the user presses Allow, your app is authorized. The OAuth Dialog will redirect (via HTTP 302) the user's browser to the URL you passed in the redirect_uri parameter with an authorization code:
http://YOUR_URL?code=A_CODE_GENERATED_BY_SERVER
you could always check for error_reason and error parameters in the callback action to establish that the user did not authorize the app.
Complete documentation here:
http://developers.facebook.com/docs/authentication/