OneDrive for Business for iOS Devices - Accessing Non Office 365 Hosted Sites

Hello,
I have a SharePoint site that I host on premise and am not using Office 365 at all.  Is it possible for me to access the site using the iOS version of the OneDrive for Business app?  When I specify my username, password and SharePoint 2013 site
URL i get a login error with username/password incorrect.
Does the iOS app only support Office 365 implementations of SharePoint?
Thanks

what type of authentication you are using, this is the key?
check this official blog:
http://blogs.office.com/2014/02/27/introducing-onedrive-for-business-for-ios-v1-2/
http://social.technet.microsoft.com/Forums/sharepoint/en-US/3ad5b8ca-37e9-43b2-9201-9c5c339d157c/onedrive-for-business-ipad-app-with-onpremise-sharepoint-2013?forum=sharepointadmin
Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

Similar Messages

  • Mess with accounts in OneNote and OneDrive for Business - can't open documents from Office 365

    Hello!
    [Reposted from
    here]
    I've got Office 365 subscription (E3) with Office.
    I can view and edit OneNote notebooks on Office 365 via browser, but can't open it in OneNote.
    The similar problem exists for OneDrive for Business - some libraries are syncing, some cannot - asking for Enter credentials, but when I click - nothing happens.
    There were two accounts bound to Office 2013 - personal Microsoft ID as primary account and corporate Office 365 linked to it.
    Windows 8.1 corporate profile is linked to Microsoft ID account as well.
    Something happen with these accounts after password was changed - it seems like some account information was cached and can't be cleaned.
    I tried to uninstall Office and install it - no success.
    I cleaned computer with
    this utility from Support - no luck.
    On other Windows 8.1 computer I created new profile (with Microsoft ID account) - surprise, there are problems there as well.
    I deleted all Office15 entries from Credentials Manager - Office asked me about Office 365 login/password - I entered them, it is syncing, Haliluja, but, when Microsoft ID account was linked to Office 365 account in Office - problem appears again.
    It seems that Office 2013 uses Microsoft ID credentials for Office 365 content.
    I'd like to use Microsoft ID as primary account for Office and link Office 365 account to it, but don't want such problems. It worked fine, but I don't know what happened and how it can be analyzed and fixed.
    Update: It seems I localized the problem, but still don't know the solution.
    Scenario to reproduce error for me:
    1. Create fresh new Corporate/Domain user profile on Windows 8.1 with Office Pro 365 installed on computer with latest updates
    2. Go to SharePoint Online and browse some Libraries and OneNote notebooks - all ok
    3. Start to sync them using OneNote and OneDrive for Business - ok
    4. Link Microsoft Account with Corporate Account in Windows 8.1 - ok
    5. Syncing of _some_ (not all) Office 365 libraries and notebooks stop working - errors with access, permissions. I'm trying to enter credentials but this doesn't help
    6. Disconnect Microsoft Account and Reboot - all libraries and notebooks of Office 365 work fine again. But OneNote notebooks from OneDrive stop working :)
    How I can fix this situation and have Microsoft and Corporate account connected?

    Update 2:
    I installed PowerShell for SharePoint online cmdlets and found this user using get-SPOUser.
    I removed this user using remove-SPOUser -site
    https://mysitename.sharepoint.com -LoginName
    [email protected]
    but when I'm trying to access sharepoint from the browser with Microsoft account credentials - new record for this user is created again and I can see it with get-SPOUser :(
    So, problem is still not solved - this user is still can be authenticated (there is no such user in SharePoint site collection, there is no such user profile) and Office 2013 syncing doesn't work for Office 365 due this mess with accounts.
    I know that I can remove Sharing with external users from Site Collection and information about these users will be permanently deleted - but I don't want to do this, there are several customers who work with our documents.

  • Disabling external sharing in OneDrive for Business for selected users

    Hello,
    I have a requirement to disable external sharing option in OneDrive for Business for a few user and allow external sharing for a selected users. Is this possible?
    What I know is, we can enable or disable external sharing for all the users who use OneDrive for business by configuring Sharing option for My site collection at "xxx-my.sharepoint.com". But I want to know is if it is possible to handle this at
    user level by doing changes to "xxx-my.sharepoint.com/personal/user_domain.com" site collection.
    Thanks,
    Lakshmi

    Thanks Vasil for your reply. Yes, as you mentioned, removing edit option or admin access is not the right solution for my requirement. I just want to know why My site collection is tightly coupled with personal site collections. Many users will use OneDrive
    to store data and share it with others internally and externally. So, as a security measure there should be some option to enable this only for a specific users. Hoping someone will give me idea to achieve this.

  • How to use Powershell to set delegate for user mailbox in Exchange 2010 and Office 365

    Hello,
    Can you please tell me if I can set delegate for user mailbox in Exchange 2010 or Office 365 using Powershell?
    If I can, then how can I do that? (which Powershell commands for setting the delegate?)
    Many thanks, and have a good day!

    Hi,
    If you wanted to add a delegate to possiblly a large number of users or you do this during mailbox provisioning. So the following script will use
    impersonation to access another users mailbox and add a delegate.
    $mbtoDelegate = "[email protected]"
    $delegatetoAdd = "[email protected]"
    $dllpath = "C:\Program Files\Microsoft\Exchange\Web Services\1.0\Microsoft.Exchange.WebServices.dll"
    [void][Reflection.Assembly]::LoadFile($dllpath)
    $service = new-object Microsoft.Exchange.WebServices.Data.ExchangeService([Microsoft.Exchange.WebServices.Data.ExchangeVersion]::Exchange2007_SP1)
    $windowsIdentity = [System.Security.Principal.WindowsIdentity]::GetCurrent()
    $sidbind = "LDAP://<SID=" + $windowsIdentity.user.Value.ToString() + ">"
    $aceuser = [ADSI]$sidbind
    $service.AutodiscoverUrl($aceuser.mail.ToString())
    $service.ImpersonatedUserId = new-object Microsoft.Exchange.WebServices.Data.ImpersonatedUserId([Microsoft.Exchange.WebServices.Data.ConnectingIdType]::SmtpAddress,
    $mbtoDelegate);
    $mbMailbox = new-object Microsoft.Exchange.WebServices.Data.Mailbox($mbtoDelegate)
    $dgUser = new-object Microsoft.Exchange.WebServices.Data.DelegateUser($delegatetoAdd)
    $dgUser.ViewPrivateItems = $false
    $dgUser.ReceiveCopiesOfMeetingMessages = $false
    $dgUser.Permissions.CalendarFolderPermissionLevel = [Microsoft.Exchange.WebServices.Data.DelegateFolderPermissionLevel]::Editor
    $dgUser.Permissions.InboxFolderPermissionLevel = [Microsoft.Exchange.WebServices.Data.DelegateFolderPermissionLevel]::Reviewer
    $dgArray = new-object Microsoft.Exchange.WebServices.Data.DelegateUser[] 1
    $dgArray[0] = $dgUser
    $service.AddDelegates($mbMailbox, [Microsoft.Exchange.WebServices.Data.MeetingRequestsDeliveryScope]::DelegatesAndMe, $dgArray);
    Hope this helps.

  • SP 2013 Client Object Model: What credentials to use for Office 365 and sites behind ADFS 3.0?

    I'm using the SharePoint 2013 Client Object Model to access a site that is either in Office 365 or behind an ADFS 3.0 login screen, is it sufficient to use the new SharePointOnlineCredentials credentials
    or do I need other types of credentials for the sites behind ADFS 3.0 ? Is so, what type of credentials would I use for the sites behind ADFS 3.0?
    using (ClientContext ctx = new ClientContext(siteUrl))
    ctx.Credentials = new SharePointOnlineCredentials("some user", "a secure string password");
    while (ctx.HasPendingRequest)
    ctx.ExecuteQuery();
    // etc.

    Hi,
    According to your post, my understanding is that you want to know the ways to get credential either in Office 365 or sites behind ADFS 3.0.
    For Office 365, you can use SharePointOnlineCredentials Object to get credential. For SharePoint sites behind ADFS 3.0, you can use NetworkCredential Object:
    ctx.Credentials = new NetworkCredential(UserName, Password, Domain); 
    The link below will provide more information about using the ADFS FedAuth Token programmatically through the SharePoint Client Object Model:
    http://samirvaidya.blogspot.com/2013/05/using-adfs-fedauth-token.html
    Best regards
    Patrick Liang
    TechNet Community Support

  • Office 365 Developer site for Share point is not working.

    hi,
    i created office 365 developer site for share point, it is not working for share point, i am getting error when click on Share point  from ADMIN.We will getting am Error:

    Hi,
    I understand that you stay in the Office 365 admin Center, when you click the SharePoint option, you get the error page.
    I recommend to enter the URL as below in the Brower to check whether the account can access SharePoint admin Center.
     https://sitename /_layouts/15/online/SiteCollections.aspx
            Here is a similar thread for
    your reference:
    http://community.office365.com/en-us/f/148/t/192116.aspx
    Regarding SharePoint Online, for quick and accurate answers to your questions, it is recommended that you initial a new thread in Office 365 forum.
    Office 365 forum
    http://community.office365.com/en-us/forums/default.aspx
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • How to Enable Ratings on SharePoint List using Client Object Model for Office 365 SharePoint Site.

    How to Enable Ratings on SharePoint List using Client Object Model code for Office 365 SharePoint Site.
    Thanks in Advance
    Rajendra K

    Hi Rajendra,
    here you are the code and the blog, let me know if this helps
    using (ClientContext ctx = new ClientContext(https://yourSiteUrl))
    Web w = ctx.Web;
    List l = w.Lists.GetByTitle("yourListName");
    ctx.Load(l, info => info.Id);
    ctx.ExecuteQuery();
    string ListID = l.Id.ToString();
    Microsoft.Office.Server.ReputationModel.Reputation.SetRating(ctx, ListID, 1, 5);
    ctx.ExecuteQuery();
    http://blogs.technet.com/b/speschka/archive/2013/07/08/how-to-use-csom-with-ratings-in-sharepoint-2013.aspx
    Kind Regards, John Naguib Technical Consultant/Architect MCITP, MCPD, MCTS, MCT, TOGAF 9 Foundation

  • Access to office 365 api

    Hi team, 
    i have been building up native applications and has access to Microsoft tenant in azure and there i have already the mobile application. Also i can add the webapi's to my application once when i went to configure tab and hit add on the bottom.
    So from here i can add office 365 exchange online api and set the delegated permissions to required field.
    Also i went through couple of articles and videos which shows how to get access to office 365 api.
    http://www.microsoftvirtualacademy.com/training-courses/deep-dive-integrate-office-365-apis-in-your-mobile-device-apps?m=11496
    As mentioned in video we add the connected service and it sign in to microsoft account and register the app.
    Also add some client id to App.xaml . And when we went to tenant application page we can see the new registered app with a client id.
    Please let me know if i already has the application in azure and i have added the office 365 exchange online api , then shall i need to do above steps or i can directly hit the api service Uri's.
    thanks,
    NItesh

    Hi,
    need to add the office 365 exchange online web api in Azure and set the required permissions.
    then following this video code we can connect with office apis
    http://www.microsoftvirtualacademy.com/training-courses/deep-dive-integrate-office-365-apis-in-your-mobile-device-apps?m=11496
    also following url can be referred if we need directly to communicate with office 365 api using Oauth authentication method.
    https://msdn.microsoft.com/en-us/office/office365/api/api-catalog
    Thanks,
    Nitesh

  • How to access my five free hosted sites?

    I am a creative cloud member and have created a site in lightroom, how do I access my five free hosted sites?

    I'm using a Windows PC. It's really odd, I can upload pictures, but can't
    seem to figure out how to get to any of the PS tools. I have a own copy of
    pS Elements 10, so I know a bit about  PS.
    On Wed, Oct 23, 2013 at 8:47 PM, Jeffrey Tranberry <[email protected]

  • Still no support for iOS devices or non-Safari browsers

    Been a while now and still the new format doesn't support iOS devices - no formatting bar or ability to edit post.  Still, alternative browsers, e.g. iCab and Atomic, have different issues like format bar does appear but keyboard doesn't.
    Should we be expecting an update sometime soon?

    I cant find it now, but i saw a post by an apple corp poster saying that this was done purposefully to ensure a "solid" release, or something like that. Basically, iOS devices arent considered a significant user base to be worried about giving VERY limited functionality to.
    They basically said that it would be developed into future updates, but with no timelines. Sounded to me like it would be a VERY long time before we get anything above basic text editor abilities. No wait a second, basic text editors can do BOLD! We cant even do that.
    Jason

  • How to use iMessage for all the iOS devices registered on one apple ID

    I have 5 iOS device for my family on my appleID. But I want have different ID to use iMessage for all devices. Is it possible? How?

    Sign in with whatever Apple ID desired on the device in iMessage setup.
    This has no affect on the Apple ID used for store purchases or iCloud.

  • Skype for business for Office 365

    Hi Team,
    I need to upgrade my current Lync 2013 to Skype for business and as per information i got an update released by Microsoft KB2889923 ... this is used to upgrade Lync 2013 to skype for business.......but in case of Office 365 this update dosent seems to work......
    so i wanted to know if there is any other update or package or any other way to upgrade office 365 Lync.

    Hi,
    Please check out this thread
    http://community.office365.com/en-us/f/172/t/345370.aspx
    “Q2. Where can I download Skype for Business since it does not appear to be included with the Office365 download file? ====================== A2. You need to manually update your Office application,
    then you will be able to upgrade to Skype for Business. You can to do this on your Outlook client: Open your Outlook client ->
    FILE ->
    Office Account ->
    Apply updates”
    And this issue is more related to Office 365 application, we would like to give a hand, but we are not the specialists in this filed. Thanks
    for your understanding.
    Best regards,
    Eric
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Access denied office 365 / SharePoint online with Global Admin account

    Hi All,
    I am going crazy since two days solving an issue. The problem is;
    I am making a console APP which is talking to SharePoint Online using global admin account (One which was specified as admin while making a new subscription). What I am trying to achieve is, I want to add a custom action using CSOM to each site collection and
    subsite of office 365. That code works fine except on the root site collection which is pre-created by office 365 while signing up (i.e. https://xyz.sharepoint.com)
    Whatever I do on that site collection, it says gives me below error;
    "SchemaVersion":"15.0.0.0","LibraryVersion":"16.0.3912.1201","ErrorInfo":{
    "ErrorMessage":"Access denied. You do not have permission to perform this action or access this resource.","ErrorValue":null,"TraceCorrelationId":"2a47fd9c-c07b-1000-cfb7-cdffbe3ab83a","ErrorCode":-2147024891,"ErrorTypeName":"System.UnauthorizedAccessException"
    },"TraceCorrelationId":"2a47fd9c-c07b-1000-cfb7-cdffbe3ab83a"
    Now the user is global admin. I also added again that user as site collection admin. 
    The same piece of code works fine on other site collections (search site collection, any newly made site collection...). 
    here is a code;
                using (ClientContext spcollContext = new ClientContext(web.Url))
                    SecureString passWord = new SecureString();
                    foreach (char c in strAdminPassword.ToCharArray()) passWord.AppendChar(c);
                    SharePointOnlineCredentials creds = new SharePointOnlineCredentials(strAdminUser, passWord);
                    spcollContext.Credentials = creds;
                    Web currentweb = spcollContext.Web;
                    spcollContext.Load(currentweb);
                    spcollContext.ExecuteQuery();
               //     authCookie = creds.GetAuthenticationCookie(new Uri(web.Url));
                    var existingActions2 = currentweb.UserCustomActions;
                    spcollContext.Load(existingActions2);
                    spcollContext.ExecuteQuery();
                    var actions2 = existingActions2.ToArray();
                    foreach (var action in actions2)
                        if (action.Description == "CustomScriptCodeForEachsite" &&
                            action.Location == "ScriptLink")
                            action.DeleteObject();
                            spcollContext.ExecuteQuery();
                    var newAction2 = existingActions2.Add();
                    newAction2.Description = "CustomScriptCodeForEachsite";
                    newAction2.Location = "ScriptLink";
                    newAction2.ScriptBlock = scriptBlock;
                    newAction2.Update();
                    spcollContext.Load(currentweb, s => s.UserCustomActions);
                    spcollContext.ExecuteQuery(); // GETTING ERROR ON THIS LINE. 
    Note: Above error is Fiddler traces.
    Nitin Khubani Sharepoint Developer

    Hi Nitin Khubani,
    Thanks for posting in MSDN forum.
    This forum is for developers discussing developing issue about
    apps for Office. Since the issue is more relative to SharePoint developing, I would like to move it to
    SharePoint 2013 - Development and Programming forum.
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us.
    Thanks for your understanding.
    Regards & Fei
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Trying to access SharePoint / Office 365 Server options from the browser

    When I use the Open With Explorer view of a SharePoint library and open a document from there, I am prompted to Check Out & Open (or just open) the file.  And then from the open file, under the File menu, I have an option for SharePoint / Office 365 Server, to check the file back in and/or to update Document Properties.  This is the exact functionality I am looking for.  My question is, why don't I have this option when I open the PDF in one of these scenarios:
    direct from the browser (within SharePoint)
    from a synced library
    outside of SharePoint (i.e. from the Desktop)

    Seems like a good question for a SharePoint user forum.
    Be well...

  • HT4623 Can you make iOS 6.1.4 for all the iOS devices?

    iLike updating iOS 6.  I know iCan't update to iOS 7 on an ipod touch 4g but i want iOS 6.1.4 on my iPOd 4g.

    Of course you cannot have it.
    Why would you want it?
    All it does is update the audio profile for the speakerphone on the iphone 5.
    What possible benefit would this update be to you?

Maybe you are looking for