2011-10-19 36 views
0

我被告知要在Google API上工作。 它幾乎相同的FB,但我有REDIRECT_URL輕微的麻煩描述:HTTP 404.您正在查找的資源(或其某個依賴項)可能已被刪除,

這是我的應用程序使用,以獲得訪問令牌

https://accounts.google.com/o/oauth2/auth?client_id=**********3-uiqulutgsobu5df302tup49v6e6ae5qu.apps.googleusercontent.com?&redirect_uri=http://localhost/Default1.aspx&scope=https://www.google.com/m8/feeds/&response_type=token 

當我註冊的應用 我設定的網址redirect_url到

http://localhost/Default1.aspx 

在我的項目中有一個名爲Default.aspx的頁面。解決方案的名稱是Googleprofiles。

它給了我一個錯誤: 無法找到資源。

說明:HTTP 404。您正在查找的資源(或它的一個依賴)可能

have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly. 

Requested URL: /Default1.aspx 

看起來很簡單。但我無法修復它.. 需要一些專家的幫助

感謝 孫

+0

請問您的本地網絡服務器有在其文檔根目錄下有一個Default1.aspx? –

+0

@Marc乙:我在我的系統上運行它。在我的asp.net解決方案中有一個Default1.aspx。在命名空間GoogleProfiles中(解決方案的名稱也是這樣) – user575219

回答

0

redirect_uri是錯誤的,將其更改或重命名Default.aspxDefault1.aspx

redirect_uri=http://localhost/Default.aspx 
+0

但是,如果default1.aspx中包含redirect_uri = http://localhost/Default.aspx和redirect_uri = http://localhost/Default1.aspx,解決方案。無論如何,我試着用建議的uri – user575219

+0

你說,「在我的項目中有一個名爲Default.aspx的頁面」。 –

+0

對不起,在我的項目中有解決方案GoogleProfiles下的Default1.aspx。我有redirect_url = http://localhost/Default1.aspx。我使用重定向URI註冊了應用程序:http://localhost/Default1.aspx。我仍然給我同樣的錯誤資源無法找到。我應該有一個港口# – user575219

相關問題