c# - How to call SharePoint Online from mobile app via webservices -



c# - How to call SharePoint Online from mobile app via webservices -

i have client app written in windowsrt connects sharepoint office365 server trough webservices. way doing sending user name , password webservices , authenticate sharepoint, info , pass client app.

_clientcontext = new clientcontext(hosturl) { credentials = new sharepointonlinecredentials(username, securepassword) };

could provide idea/spec/link explain how avoid sending username , password every request webservices. want replace them authentication token way client app receive auth token sharepoint server pass webservice, utilize communicate sharepoint on behalf? because not nice/secure send user name , password.

first, you're using securestring send password, encrypted, you're not sending password plain text.

you can utilize oauth sharepoint online, article provides flow.

c# web-services sharepoint windows-runtime office365

Comments

Popular posts from this blog

php - Android app custom user registration and login with cookie using facebook sdk -

django - Access session in user model .save() -

php - .htaccess Multiple Rewrite Rules / Prioritizing -