-1
phpページでbitbucketの最後のコミットバージョンを取得する方法を教えてください。私はhttps://api.bitbucket.org/2.0/repositories/user/repositorynameを試しましたが、アクセス権を取得していません。何もヘッダーについて何も説明していません。BitbucketのコミットバージョンをPHPページで表示する方法
phpページでbitbucketの最後のコミットバージョンを取得する方法を教えてください。私はhttps://api.bitbucket.org/2.0/repositories/user/repositorynameを試しましたが、アクセス権を取得していません。何もヘッダーについて何も説明していません。BitbucketのコミットバージョンをPHPページで表示する方法
これは、最新のコミットのためのAPIです:https://developer.atlassian.com/bitbucket/api/2/reference/resource/repositories/%7Busername%7D/%7Brepo_slug%7D/commits
認証がhereを説明しています。そこにはいくつかのオプションがあります。私にとって、アプリのパスワードオプションは、あなたのユースケースに最適なもののように聞こえる。
アプリのパスワードを作成するには:(上記のリンクからの引用)は次のように
のAppパスワードが作成され
ようになり、それを使用して this pageを1として1. Select Avatar > Bitbucket settings. 2. Click App passwords in the Access management section. 3. Click Create app password. 4. Give the app password a name related to the application that will use the password. 5. Select the specific access and permissions you want this application password to have. 6. Copy the generated password and either record or paste it into the application you want to give access. The password is only displayed this one time.
、
curl --user bitbucket_user:app_password url
あなたは、基本的な認証と通常のhttp取得だけです。
サーバ上に.gitフォルダがある場合、 'refs/heads/master'の最後のコミットハッシュを読み込みます – C1sc0