DEV Community

Cover image for How To Curl Single File Using Access Token In Gitlab
🚀 Vu Dao 🚀
🚀 Vu Dao 🚀

Posted on • Updated on

How To Curl Single File Using Access Token In Gitlab

What’s In This Document

🚀 Create access token

  • Go to User Setttings -> Access Tokens

Alt Text

Alt Text

🚀 Get project ID to call API

Alt Text

🚀 Get raw file from repository

Ref: https://docs.gitlab.com/ee/api/repository_files.html#get-raw-file-from-repository

  • Format: GET /projects/:id/repository/files/:file_path/raw

  • Example

    
    

curl --header "PRIVATE-TOKEN: " "https://gitlab.example.com/api/v4/projects/13083/repository/files/app%2Fmodels%2Fkey%2Erb/raw?ref=master"


- To get file `scripts/run.sh` in project the url is
Enter fullscreen mode Exit fullscreen mode

curl --header "PRIVATE-TOKEN: " "https://gitlab.example.com/api/v4/projects/13083/repository/files/scripts%2Frun.sh/raw?ref=master"


<h3 align="center">
  <a href="https://dev.to/vumdao">:stars: Blog</a>
  <span> · </span>
  <a href="https://vumdao.hashnode.dev/">Web</a>
  <span> · </span>
  <a href="https://www.linkedin.com/in/vu-dao-9280ab43/">Linkedin</a>
  <span> · </span>
  <a href="https://www.linkedin.com/groups/12488649/">Group</a>
  <span> · </span>
  <a href="https://www.facebook.com/CloudOpz-104917804863956">Page</a>
  <span> · </span>
  <a href="https://twitter.com/VuDao81124667">Twitter :stars:</a>
</h3>

Enter fullscreen mode Exit fullscreen mode

Top comments (0)