hi i am using OAuth Dialog for facebook permission for user's email, birthday and other deatils but when i run this app URL that is https://apps.facebook.com/projectatestapp/ (while being logged into Facebook) i see this login to app window which says
You are logging into testapp as Nina Sewart. Logging in will not add this app's activity to Facebook. with log in and cencel button instead of Permission window with Allow and Don't Allow button
here is my code
<html xmlns:fb="https://www.facebook.com/2008/fbml">
<body>
<script src="http://connect.facebook.net/en_US/all.js"></script>
<div id="fb-root"></div>
<script>
FB.init({appId: '148244388606048', xfbml: true, cookie: true, oauth: true});
FB.login({
scope: 'email,user_birthday',
});
</script>
<a href="https://www.facebook.com/dialog/oauth/?
scope=email,user_birthday&
client_id=148244388606048&
redirect_uri=https://apps.facebook.com/projectatestapp/test2.html&
response_type=token" target="_top"> test</a>
</body>
</html>
please tell me whats wrong in it?