0
我試圖在AIR應用程序中使用我們的Jira實例進行身份驗證,但我無法使其正常工作。我對HTTPService和URLRequest非常熟悉,但不確定要去哪裏。如何通過Flash登錄到Jira
吉拉的身份驗證票據
https://developer.atlassian.com/display/JIRADEV/JIRA+REST+API+Version+2+Tutorial
我試圖在AIR應用程序中使用我們的Jira實例進行身份驗證,但我無法使其正常工作。我對HTTPService和URLRequest非常熟悉,但不確定要去哪裏。如何通過Flash登錄到Jira
吉拉的身份驗證票據
https://developer.atlassian.com/display/JIRADEV/JIRA+REST+API+Version+2+Tutorial
這似乎這樣的伎倆:
var encoder:Base64Encoder = new Base64Encoder();
encoder.insertNewLines = false;
encoder.encode(name + ":" + password);
loginUsersService.headers = {Authorization:"Basic " + encoder.toString()};
loginUsersService.contentType = "application/json";
//loginUsersService.method = HTTPRequestMessage.POST_METHOD; use GET
loginUsersService.request = new URLVariables("name=John+Doe");
loginUsersService.url = hostURL + getUsersAPI;
loginUsersService.send();
唯一的問題是,我把它發送到具有無關採伐現有的API換句話說,我沒有把它發送到一個明確的登錄API(因爲我找不到或者我認爲它不存在)。
那麼你的問題是什麼? –