123ArticleOnline Logo
Welcome to 123ArticleOnline.com!
ALL >> Computer-Programming >> View Article

Active Authentication Of Office 365 And Sharepoint Online

Profile Picture
By Author: Dylan Rodriguez
Total Articles: 131
Comment this article
Facebook ShareTwitter ShareGoogle+ ShareTwitter Share

There is huge rise in demand for various SharePoint development services which include services like SharePoint customization, SharePoint consulting, development of customized web parts, customized migration, troubleshooting implementation issues and much more. Along with SharePoint development the developers can also help their customers to define and analyse their application requirements, guide them through different techniques for integrating business requirements and execute it over a set which is well planned.
This article gives you the details of performing active authentication to SharePoint online in Office 365. For accessing sharepoint objects programmatically you need to active authentication by using client object model, web services or WebDAV from outside of Office 365. This is not required if you are using SharePoint Online or using the web browser because in this case you are either already authenticated and it is the web browser that handles all the authentication with the use of active authentication.
SharePoint Online active AuthN basics
Let us see and understand how the code ...
... works before going deep into the actual code. The first step would be to request a token from STS which is located at login.microsoftonline in Office 365. With the use of SAML 1.1 protocol, the password and username would be passed on for the requested token from STS. STS returns the security token if authentication is successful and token is then sent to SharePoint. After the validation the token will return two cookies which must also be passed with all requests to SharePoint.
It is also very important to be aware of which Office 365 subscription that you are targeting. HTTP is used by P-subscriptions while communicating and HTTPS must be used by E-subscriptions.
How to use Client Object Model with Office 365 from a remote client
To invoke methods on SharePoint online with the use of Client Object Model (CSOM), web services or WebDAV we need to authenticate first. Next step would be to pass along the cookies for each request. After having the cookies the next step would be to create a Cookie Container object in which cookies can be added. Then the cookie container should be added to the request done by Client object model and for this an even called Executing web Request can be used. This is a responsible method for creating cookie container more on this one later. It should also be noted that a User Agent of the request to a new value. If the user agent is not set then a 403 forbidden error is thrown by SharePoint Online in the case of an E-subscription. While it works fine on P-subscriptions but doesn’t harm if added. When using manually the WebRequest objects then the same procedure is used. Adding cookies and user agent would be just fine.
Show me the code to get the cookies!
Let us get to the core of this article. How would the code look? There are some helper class originated from Steve "SharePoint Claims" Peschka.
You may use the helper class called MsOnlineClaimsHelper. It contains everything you might need for authentication, retrieving and caching the cookies and piggyback the cookie container on the CSOM web requests. Here is a simple example for it:
MsOnlineClaimsHelperclaimsHelper = new MsOnlineClaimsHelper(url, username, password);
using (ClientContext context = new ClientContext(url)) {
context.ExecutingWebRequest += claimsHelper.clientContext_ExecutingWebRequest;
context.Load(context.Web);
context.ExecuteQuery();
Console.WriteLine("Name of the web is: " + context.Web.Title);
}

For More Information:- Sharepoint Consulting | Sharepoint Customization

Total Views: 541Word Count: 550See All articles From Author

Add Comment

Computer Programming Articles

1. Aws Tutorial For Beginners: Learn Cloud Computing Step By Step
Author: Tech Point

2. Cloud Computing Tutorial: Complete Guide To Concepts, Models, And Uses
Author: Tech Point

3. Master Python Programming: Best Computer Course
Author: TCCI - Tririd Computer Coaching Institute

4. Spark Matrix™ Reveals Competitive Differentiation In Artificial Intelligence Services
Author: Umangp

5. Full Stack Web Development Course: It Training Institute
Author: TCCI - Tririd Computer Coaching Institute

6. Best Java Classes: Tcci’s Expert-led Job Training
Author: TCCI - Tririd Computer Coaching Institute

7. Pea Starch Market Worth $307.4 Million By 2029
Author: Rutuja kadam

8. Advance From Basic To Pro Java With Microservices Training - Programming Classes
Author: TCCI - Tririd Computer Coaching Institute

9. Expert E-commerce Website Development Services In Mohali | Sochtek
Author: sochtek

10. Combining Insight And Experience In Next-generation Siem Evaluation
Author: Umangp

11. Before You Skip Gcc High Pricing… Know What It Could Cost You
Author: ECF Data

12. Poker Slot Online Game At Poker88 Casino: A Complete Guide For Modern Players
Author: asdaf

13. Data Science Masters With Python: Join Tcci Classes
Author: TCCI - Tririd Computer Coaching Institute

14. Fast-track Web Development Course At Tcci - Best Computer Training
Author: TCCI - Tririd Computer Coaching Institute

15. Hiring Android Programmers And The Changing Nature Of Mobile Communication
Author: Shree Kumar

Login To Account
Login Email:
Password:
Forgot Password?
New User?
Sign Up Newsletter
Email Address: