Upload secure pdf to SharePoint folder using GraphAPI

JC90 21 Reputation points
2022-04-18T21:01:39.02+00:00

We have a pdf file that fails to upload to SharePoint via GraphAPI. No "id" is present/created in the json response causing it to not upload. I think it is because the pdf is secure and locked down. Here is a screenshot of the security on it. Is this what is causing the issue?194032-capture.png

Thank you.

Microsoft 365 and Office SharePoint Development
Microsoft Security Microsoft Graph
{count} votes

Accepted answer
  1. Tong Zhang_MSFT 9,251 Reputation points
    2022-04-20T01:13:23.623+00:00

    Hi @JC90 ,
    I'm glad to hear you solve the problem ,if you have any issue about SharePoint, you are welcome to raise a ticket in this forum.

    By the way, since the Microsoft Q&A community has a policy that "The question author cannot accept their own answer. They can only accept answers by others." and according to the scenario introduced here: Answering your own questions on Microsoft Q&A, I would make a brief summary of this thread:

    [Upload secure pdf to SharePoint folder using GraphAPI]

    Issue Symptom:
    We have a pdf file that fails to upload to SharePoint via GraphAPI. No "id" is present/created in the json response causing it to not upload. I think it is because the pdf is secure and locked down.

    Current status:
    There is some code that was limiting the size of the file to 4mb. We have increased it and it is working now.

    You could click the "Accept Answer" button for this summary to close this thread, and this can make it easier for other community member's to see the useful information when reading this thread. Thanks for your understanding!


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
    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.


    1 person found this answer helpful.
    0 comments No comments

3 additional answers

Sort by: Most helpful
  1. Srinivasa Rao Darna 6,761 Reputation points Microsoft External Staff
    2022-04-19T04:01:07.377+00:00

    Hi @JC90 ,

    I tried to replicate the same in my test environment, and I was able to upload password protected PDFs and access the uploaded files successfully using small file upload and large file upload API's.

    • Can you share the endpoint used and any possible screenshot of the response
    • Are you able to successfully upload the same file directly to SPO library

    Reference documents:
    driveitem-upload-content
    driveitem-createuploadsession

    Hope this helps.

    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have further questions about this answer, please click "Comment".

    0 comments No comments

  2. Tong Zhang_MSFT 9,251 Reputation points
    2022-04-19T07:32:03.547+00:00

    Hi @JC90 ,

    According to my research and testing, I successfully uploaded the pdf to SharePoint using Graph API, the test code is as follows, you can refer to :

    PUT  https://graph.microsoft.com/v1.0/sites/{site-id}/drives/{drive-id}/root:/upload.pdf:/content  
    
    Headers:  
    Content-Type: application/pdf  
    

    Test results:
    194126-image.png


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
    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

  3. JC90 21 Reputation points
    2022-04-19T20:26:50.09+00:00

    Thank you for the help and quick responses. The Graph api is working as intended. We had some code that was limiting the size of the file to 4mb. We have increased it and it is working now.
    194443-capture.png

    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.