TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Gautam Parmar
NA
867
21.9k
Rest API Using Authorization Key
Oct 9 2017 1:41 AM
This is first time i have started working on Rest API's
I have tried a lot to find resources but couldnt achieve
as per documentation This has to be my request header and request will be POST
" Authorization":"125THIS123IS123TEST1354",
"cache-control":"no-cache",
"content-type":"application/json"
I have tried alot to send data but got 401 Unauthorized error.
$.ajax({
type:
"POST"
,
url:
'https://testurl/api/test'
,
headers: {
'Authorization'
:
'125THIS123IS123TEST1354'
,
'content-type'
:
'application/json'
,
'cache-control'
:
'no-cache'
},
success:
function
(data) {
alert(
'success'
)
},
failure:
function
(msg) {
alert(msg);
}
});
I dont know am going on right way or is ther eany other method.....
Reply
Answers (
5
)
Getting datalist control to append more data to list when
Generate XML from XSD for data from table/view(SqlServer)