Questions tagged [personal-access-token]

74 questions
0
votes
0 answers

Retrieve html content from private GitLab instance

I need to retrieve some values from multiple projects from GitLab. Unfortunately API can not be used to access them. Alternatively I could use screen scraping but when trying to parse html, Beautiful soup returns HTML content of sign in page not the…
wiw101
  • 11
  • 2
0
votes
1 answer

What is the password after git push?

after I typed git push I was asked to input password, which i did but it wasn't showing but still continued the i pressed enter but gave me invalid password. please is the password supposed to be our personal token access
0
votes
0 answers

How to (quickly) switch GIT Personal Access Tokens

In our team we share a machine (and the same linux user) for developing on Linux. The Git repository is hosted on Azure. We now want everyone to use their own account when working on this machine and I'm told to do this with Personal Access Tokens.…
Tare
  • 482
  • 1
  • 9
  • 25
0
votes
1 answer

Azure Devops Rest API Create Personal Access Token(PAT) -- patTokenError : userIdRequired

I am able to list existing PATs when I use the GET verb. I get a 200 OK response when I create a PAT using the POST verb. The payload shows: {"patToken":null,"patTokenError":"userIdRequired"} This error is listed in the documentation but does not…
0
votes
1 answer

Create ADO PAT with Azure AAD application

Here's what I have been trying to do: Created an app under AAD. Added the user_impersonation API permission to it. Created a secret and noted down the App ID Been trying to use this python code to generate a new PAT: import msal import…
0
votes
1 answer

Where do I apply my updated github personal access token (PAT) in eclipse?

When you integrate your eclipse project with a github repository you can use a personal access token (PAT) to authorize the integration and let eclipse write to and read from github. Unless the PAT is set to never expire, eventually you will need to…
MustardMan
  • 43
  • 1
  • 7
0
votes
1 answer

How to get refresh token with personal access token in laravel passport

Thanks for help I am working on a project with laravel in backend and react js on the front end I cannot understand how to issue refresh token along with personal access token Createtoken('token_name')->accesstoken(); Only issues an access token
0
votes
1 answer

X-access-token vs a-githib-access-token (username vs password)

I'm not sure what the difference is between the x-access-token and a-github-access-token? I assume the password is generated from "Personal access tokens" in Developer Options in GitHub. But, what/where is the token for my username? (These are…
arcaderob
  • 481
  • 1
  • 7
  • 21
0
votes
0 answers

Personal access token path to file with pw instead of pw itself?

After failing to get set up with ssh keys I have now set up a personal access token to use with our github account. I saved the PAT in /.ssh/my_pat. This works in the terminal. If e.g. I type 'git push' I'm prompted for my username and and then…
Doug Fir
  • 19,971
  • 47
  • 169
  • 299
0
votes
0 answers

Is there a way we can list personal access token in laravel for admin

I have integrated the Personal Access token for the API Users. Also i have some third party users on my app. so i have created a tokens for them for long time expiration. So how can i list the Token with their expiration date time in laravel In…
Kashyap Patel
  • 1,139
  • 1
  • 13
  • 29
0
votes
1 answer

How to do a git push with personal access token? I get "invalid refspec" error

I have a script as follows to push to my repo: cd /pathtomyrepo git fetch origin git merge origin/master git add . git status echo -n "Enter the Description for the Change: " [Minor Update] read CHANGE_MSG git commit -m "${CHANGE_MSG}" git push…
-1
votes
1 answer

problem when fix error git : "Support for password authentication was removed", there are no github internet password in Keychain Access?

I installed git on my Mac and checked it on terminal by command git version, it showed me this : git version 2.35.1 So maybe it is ok. When I tried to push a folder to git, it showed me an error :remote: Support for password authentication was…
-1
votes
1 answer

How to automate "TF get" permanently

I have a batch job on a (windows 10) machine that runs every night. A part of the job is to do a "tf get /login:[PAT]". This works for a couple of days after which it fails with "you are not authorized to access". Basically what happens is, after…
Thomas Woelfer
  • 533
  • 5
  • 21
-1
votes
1 answer

Git won't accept PAT and thinks it's a password

I want to clone my repository and got a prompt that I could no longer use passwords, and had to instead use a Personal Access Token. But whenever I try to enter it (either in the popup window or the CMD directly) it keeps telling me I can't use…
Parrotmaster
  • 647
  • 1
  • 7
  • 27
1 2 3 4
5