2

stageWebView を使用して FB からユーザー アクセス トークンを取得しようとしています。場所の変更/変更イベントからの出力をトレースすると、得られるのは google/FB の URL だけで、トークンを持っているものはありません。

これが私のコードです:

var webView:StageWebView = new StageWebView();

function onChanging(e:LocationChangeEvent):void {
    trace(e.location);
    e.preventDefault();
    webView.loadURL(e.location);
    webView.stage = null;
}

function onChange(e:LocationChangeEvent):void {
    trace(webView.location);
    if(webView.location.indexOf("http://google.com") == 0 && webView.location.indexOf("access_token")!=-1) {
        trace("?"+webView.location.substring(webView.location.indexOf("access_token"), webView.location.indexOf("&expires_in")));
        webView.stage = null;
    }
}

function connectFb() {
    webView.addEventListener(LocationChangeEvent.LOCATION_CHANGING, onChanging);
    webView.addEventListener(LocationChangeEvent.LOCATION_CHANGE, onChange);

    webView.stage = stage;
    webView.viewPort = new Rectangle(0, 0, stage.stageWidth, stage.stageHeight);

    webView.loadURL("https://graph.facebook.com/oauth/authorize?client_id=123456789012345&redirect_uri=http://google.com&type=user_agent&display=popup")
}

マイ コードの出力:

https://graph.facebook.com/oauth/authorize?client_id=164534120383085&redirect_uri=http://google.com&type=user_agent&display=popup
https://www.facebook.com/dialog/oauth?client_id=164534120383085&redirect_uri=http%3A%2F%2Fgoogle.com&type=user_agent&display=popup
https://www.facebook.com/dialog/oauth?client_id=164534120383085&redirect_uri=http%3A%2F%2Fgoogle.com&type=user_agent&display=popup
http://google.com/
http://google.com/
http://www.google.com/
http://www.google.com/

私はネット上のすべてのチュートリアルを試し、AS3 facebook dev で本を購入しましたが、まだこれを理解できません。これは私にとってかなり重要なプロジェクトであるため、どんな助けも非常に高く評価されます

4

1 に答える 1

0

UI の例の更新 プロフィール写真またはユーザー名の読み込み

String acc = session.getAccessToken();

 Log.e("Access-Token", acc);

幸運を祈ります

于 2013-06-21T05:31:43.673 に答える