How do we open the file from URL without using credentials

BeUnique 2,332 Reputation points
2021-07-08T08:16:13.967+00:00

I have the below URL.

http://docs.vinnet.vinu.intranet/webapp/url/accessId/25430142521

By default now, when clicking the document the system will ask the credentials then followed by open the document.

But, i want Whenever i am clicking the URL, it should open the document without asking the credentials.

Meanwhile all the end used does not have the credentials. (will set credentials some where)

How do we handle this case to maintain the credentials for all the user to open the document...?

Windows for business | Windows Server | User experience | Other
{count} votes

2 answers

Sort by: Most helpful
  1. JiayaoZhu 3,926 Reputation points
    2021-07-09T07:29:36.26+00:00

    Hi,

    Thanks for posting on our forum!

    1) If you want to provide a URL such that a web browser can open the file, then a pre-signed URL is definitely the best method. However, you may need to use a third-party media to call from, like Amazon S3 API. You can also do a reasearch by yourself to find some suitable media that you can call from and choose whatever options you would like to apply. Here is the link:
    https://python.plainenglish.io/access-files-from-aws-s3-using-pre-signed-urls-in-python-f1b2f66bdd57

    Please note: Information posted in the given link is hosted by a third party. Microsoft does not guarantee the accuracy and effectiveness of information.

    2) I am not sure if I understand your question correctly.
    "maintain the credentials for all the user to open the document"
    ——You haven't installed credentials for all the users, how can you maintain the credentials?

    Thanks for your support!

    BR,
    Joan


    If the Answer is helpful, please click "Accept Answer" and upvote it.

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    0 comments No comments

  2. MotoX80 36,406 Reputation points
    2021-07-09T12:35:39.907+00:00

    I have the below URL.

    http://docs.vinnet.vinu.intranet/webapp/url/accessId/25430142521

    The url doesn't matter. The web site that hosts the data does. Given the .intranet part of the url, that tells me that this site in located on your organization's private network. So you might be able to use IIS integrated authentication. That would be the typical "Windows solution".

    But the site needs to be hosted on IIS on a server that is a member of an Active Directory domain. AD is also required for the client and the user account. And the webapp can't be coded in a way that forces users to a "enter your credentials" web page.

    You should talk to the server/web admins who support the server/site. They in turn may need to talk to the programmer who developed the webapp.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.