unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
* bug#39511: github tokens being deprecated
@ 2020-02-08 14:50 Matt Wette
  2020-02-15 18:43 ` bug#39511: github auth Matt Wette
  2020-02-15 23:02 ` bug#39511: udpate Matt Wette
  0 siblings, 2 replies; 6+ messages in thread
From: Matt Wette @ 2020-02-08 14:50 UTC (permalink / raw)
  To: 39511

$ guix refresh
...
Backtrace:
           12 (apply-smob/1 #<catch-closure 7f0c2c0c66c0>)
In ice-9/boot-9.scm:
     705:2 11 (call-with-prompt _ _ #<procedure default-prompt-handle?>)
In ice-9/eval.scm:
     619:8 10 (_ #(#(#<directory (guile-user) 7f0c2bd4e140>)))
In guix/ui.scm:
   1808:12  9 (run-guix-command _ . _)
In ice-9/boot-9.scm:
     829:9  8 (catch _ _ #<procedure 7f0c2bcbd3b8 at guix/ui.scm:652?> ?)
     829:9  7 (catch _ _ #<procedure 7f0c2bcbd3d0 at guix/ui.scm:775?> ?)
In guix/store.scm:
    625:10  6 (call-with-store _)
   1848:24  5 (run-with-store #<store-connection 256.99 7f0c1fd586c0> ?)
In guix/scripts/refresh.scm:
    541:14  4 (_ _)
In srfi/srfi-1.scm:
     640:9  3 (for-each #<procedure 7f0c2abf1d00 at guix/scripts/ref?> ?)
In guix/scripts/refresh.scm:
     344:2  2 (check-for-package-update #<package sbcl-stumpwm-with-?> ?)
In guix/import/github.scm:
    237:25  1 (latest-release #<package sbcl-stumpwm-with-slynk@19.11?>)
In unknown file:
            0 (scm-error misc-error #f "~A" ("Error downloading rel?") ?)

ERROR: In procedure scm-error:
Error downloading release information through the GitHub
API. This may be fixed by using an access token and setting the environment
variable GUIX_GITHUB_TOKEN, for instance one procured from
https://github.com/settings/tokens


after github token acquired:

$ guix refresh
...
guix refresh: warning: input 'Carp' of perl-xml-compile is in Perl core
gnu/packages/xml.scm:1113:13: tinyxml2 would be upgraded from 7.0.1 to 7.1.0
following redirection to 
`https://api.github.com/repositories/7715820/releases?access_token=728ec76dc9ea4344b57ba6be86674ed9e0135090'...
gnu/packages/xdisorg.scm:1731:13: python-pyperclip would be upgraded 
from 1.6.4 to 1.7.0


and then an email from github.com:

Hi @mwette,

On February 8th, 2020 at 14:37 (UTC) your personal access token (guix/bluefin) using GNU Guile was used as part of a query parameter to access an endpoint through the GitHub API:

https://api.github.com/repositories/32202720/releases

Please use the Authorization HTTP header instead, as using the `access_token` query parameter is deprecated and will be removed July 1st, 2020.

Depending on your API usage, we'll be sending you this email reminder once every 3 days for each token and User-Agent used in API calls made on your behalf.
Just one URL that was accessed with a token and User-Agent combination will be listed in the email reminder, not all.

Visithttps://developer.github.com/changes/2019-11-05-deprecated-passwords-and-authorizations-api/#authenticating-using-query-parameters  for more information.

Thanks,
The GitHub Team

^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#39511: github auth
  2020-02-08 14:50 bug#39511: github tokens being deprecated Matt Wette
@ 2020-02-15 18:43 ` Matt Wette
  2020-02-22 10:52   ` Ludovic Courtès
  2020-02-15 23:02 ` bug#39511: udpate Matt Wette
  1 sibling, 1 reply; 6+ messages in thread
From: Matt Wette @ 2020-02-15 18:43 UTC (permalink / raw)
  To: 39511

I have not gotten into testing, but according to email and references
provided previously the patch below might work.


--- github.scm-orig    2020-02-15 10:32:52.209481329 -0800
+++ github.scm    2020-02-15 10:40:36.958144491 -0800
@@ -154,14 +154,12 @@
      ;; Ask for version 3 of the API as suggested at
      ;; <https://developer.github.com/v3/>.
      `((Accept . "application/vnd.github.v3+json")
+      ,@(if (%github-token)
+        `(Authorization . ,(string-append "token " (%github-token)))
+        '())
        (user-agent . "GNU Guile")))

-  (define (decorate url)
-    (if (%github-token)
-        (string-append url "?access_token=" (%github-token))
-        url))
-
-  (match (json-fetch (decorate release-url) #:headers headers)
+  (match (json-fetch release-url #:headers headers)
      (#()
       ;; We got the empty list, presumably because the user didn't use 
GitHub's
       ;; "release" mechanism, but hopefully they did use Git tags.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#39511: udpate
  2020-02-08 14:50 bug#39511: github tokens being deprecated Matt Wette
  2020-02-15 18:43 ` bug#39511: github auth Matt Wette
@ 2020-02-15 23:02 ` Matt Wette
  1 sibling, 0 replies; 6+ messages in thread
From: Matt Wette @ 2020-02-15 23:02 UTC (permalink / raw)
  To: 39511

oops:  `(Auth ...) => (list `(Auth...))

^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#39511: github auth
  2020-02-15 18:43 ` bug#39511: github auth Matt Wette
@ 2020-02-22 10:52   ` Ludovic Courtès
  2020-02-22 14:39     ` Matt Wette
  2020-10-05  2:56     ` Maxim Cournoyer
  0 siblings, 2 replies; 6+ messages in thread
From: Ludovic Courtès @ 2020-02-22 10:52 UTC (permalink / raw)
  To: Matt Wette; +Cc: 39511

Hi Matt,

Matt Wette <matt.wette@gmail.com> skribis:

> I have not gotten into testing, but according to email and references
> provided previously the patch below might work.

I’ve applied the patch on your behalf, thank you!

Ludo’.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#39511: github auth
  2020-02-22 10:52   ` Ludovic Courtès
@ 2020-02-22 14:39     ` Matt Wette
  2020-10-05  2:56     ` Maxim Cournoyer
  1 sibling, 0 replies; 6+ messages in thread
From: Matt Wette @ 2020-02-22 14:39 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 39511


On 2/22/20 2:52 AM, Ludovic Courtès wrote:
> Hi Matt,
>
> Matt Wette <matt.wette@gmail.com> skribis:
>
>> I have not gotten into testing, but according to email and references
>> provided previously the patch below might work.
> I’ve applied the patch on your behalf, thank you!
>
> Ludo’.
>

much appreciated

Matt

^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#39511: github auth
  2020-02-22 10:52   ` Ludovic Courtès
  2020-02-22 14:39     ` Matt Wette
@ 2020-10-05  2:56     ` Maxim Cournoyer
  1 sibling, 0 replies; 6+ messages in thread
From: Maxim Cournoyer @ 2020-10-05  2:56 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 39511-done, Matt Wette

Ludovic Courtès <ludo@gnu.org> writes:

> Hi Matt,
>
> Matt Wette <matt.wette@gmail.com> skribis:
>
>> I have not gotten into testing, but according to email and references
>> provided previously the patch below might work.
>
> I’ve applied the patch on your behalf, thank you!
>
> Ludo’.

Closing, thanks!

Maxim




^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2020-10-05  2:57 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-02-08 14:50 bug#39511: github tokens being deprecated Matt Wette
2020-02-15 18:43 ` bug#39511: github auth Matt Wette
2020-02-22 10:52   ` Ludovic Courtès
2020-02-22 14:39     ` Matt Wette
2020-10-05  2:56     ` Maxim Cournoyer
2020-02-15 23:02 ` bug#39511: udpate Matt Wette

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).