0

Using of mobile dialog authentication is working well for other mobile devices except on this Nokia N70.

1) I call to graph api

https://graph.facebook.com/oauth/authorize?type=user_agent&display=wap&client_id=xxxx&redirect_uri=xxxx&scope=user_photos,read_stream

2) which make for mobile devices to display the below uri https://m.facebook.com/dialog/permissions.request?_path=permissions.request&app_id=xxx&redirect_uri=xxxx&display=wap&type=user_agent&xxx

But, it can't display the 2) step dialog and automatically redirected to my redirect_uri which gave me errors of 404. Actually it show display authentication dialog box and should get grant from User.

What exactly might be the issue?

kitokid
  • 3,009
  • 17
  • 65
  • 101

1 Answers1

2

While I can't find specific information on why it wouldn't work I would most likely suspect that because the N70 is a 6 year old phone and uses WAP 2.0, which Facebook actually hardly supports anymore as stated in numerous places. (e.g. Facebook Feed Dialog Mobile Url: Issue with display=wap

All modern handsets support full HTML these days. So WAP is mostly dead besides people who haven't updated their handsets in the last 3-4 years.

My suggestion is, why are you hoping to support WAP and is it really needed?

UPDATE [2012-07-07]: Facebook is now removing display=wap, hence making it completely dead in Facebook's world.

Community
  • 1
  • 1
Adam
  • 16,089
  • 6
  • 66
  • 109
  • yes. I know that mobile phone is really old. but due to requirements, I need to cover for that mobile too. Thanks. plus 1. – kitokid Dec 27 '11 at 08:39