File tree 9 files changed +14
-12
lines changed
9 files changed +14
-12
lines changed Original file line number Diff line number Diff line change @@ -420,11 +420,12 @@ The `acapy.WebhookHandler` is web framework agnostic and reads the topic from th
420
420
- [ ] godoc
421
421
- [ ] Proper error handling
422
422
- [x] Admin API Key
423
- - [ ] Tracing via global config
423
+ - [x ] Tracing via global config
424
424
- [ ] Automation of steps via global config
425
425
- [ ] Payment decorators https://github.com/hyperledger/aries-rfcs/tree/master/features/0075-payment-decorators
426
426
- [ ] Constructors for JSON-LD types
427
427
- [ ] Add types for roles, states, predicates
428
+ - [ ] Allow for a connection-less credential exchange
428
429
- [ ] Allow for a connection-less proof by making a QR code of a payload below. The base64 payload is the result of your call to ` /present-proof/create-request ` .
429
430
``` json
430
431
{
Original file line number Diff line number Diff line change @@ -166,7 +166,8 @@ func (app *App) StartWebserver() {
166
166
})
167
167
168
168
r .HandleFunc ("/webhooks/topic/{topic}/" , webhookHandler ).Methods (http .MethodPost )
169
- fmt .Printf ("Listening on %v\n " , app .port )
169
+ fmt .Printf ("Listening on http://localhost:%d\n " , app .port )
170
+ fmt .Printf ("ACA-py Admin API on http://localhost:%d\n " , app .port + 2 )
170
171
171
172
app .server = & http.Server {
172
173
Addr : fmt .Sprintf (":%d" , app .port ),
Original file line number Diff line number Diff line change @@ -232,7 +232,8 @@ func (app *App) StartWebserver() {
232
232
})
233
233
234
234
r .HandleFunc ("/webhooks/topic/{topic}/" , webhookHandler ).Methods (http .MethodPost )
235
- fmt .Printf ("Listening on %v\n " , app .port )
235
+ fmt .Printf ("Listening on http://localhost:%d\n " , app .port )
236
+ fmt .Printf ("ACA-py Admin API on http://localhost:%d\n " , app .port + 2 )
236
237
237
238
app .server = & http.Server {
238
239
Addr : fmt .Sprintf (":%d" , app .port ),
Original file line number Diff line number Diff line change 1
- module github.com/ldej/go-acapy-client/examples/issue_credential
1
+ module github.com/ldej/go-acapy-client/examples/issue_credential_v2
2
2
3
3
go 1.15
4
4
Original file line number Diff line number Diff line change @@ -234,7 +234,8 @@ func (app *App) StartWebserver() {
234
234
})
235
235
236
236
r .HandleFunc ("/webhooks/topic/{topic}/" , webhookHandler ).Methods (http .MethodPost )
237
- fmt .Printf ("Listening on %v\n " , app .port )
237
+ fmt .Printf ("Listening on http://localhost:%d\n " , app .port )
238
+ fmt .Printf ("ACA-py Admin API on http://localhost:%d\n " , app .port + 2 )
238
239
239
240
app .server = & http.Server {
240
241
Addr : fmt .Sprintf (":%d" , app .port ),
Original file line number Diff line number Diff line change @@ -310,7 +310,8 @@ func (app *App) StartWebserver() {
310
310
fmt .Println (r .URL .Path )
311
311
})
312
312
r .HandleFunc ("/webhooks/topic/{topic}/" , webhookHandler ).Methods (http .MethodPost )
313
- fmt .Printf ("Listening on %v\n " , app .port )
313
+ fmt .Printf ("Listening on http://localhost:%d\n " , app .port )
314
+ fmt .Printf ("ACA-py Admin API on http://localhost:%d\n " , app .port + 2 )
314
315
315
316
app .server = & http.Server {
316
317
Addr : fmt .Sprintf (":%d" , app .port ),
Original file line number Diff line number Diff line change @@ -355,7 +355,8 @@ func (app *App) StartWebserver() {
355
355
fmt .Println (r .URL .Path )
356
356
})
357
357
r .HandleFunc ("/webhooks/topic/{topic}/" , webhookHandler ).Methods (http .MethodPost )
358
- fmt .Printf ("Listening on %v\n " , app .port )
358
+ fmt .Printf ("Listening on http://localhost:%d\n " , app .port )
359
+ fmt .Printf ("ACA-py Admin API on http://localhost:%d\n " , app .port + 2 )
359
360
360
361
app .server = & http.Server {
361
362
Addr : fmt .Sprintf (":%d" , app .port ),
Original file line number Diff line number Diff line change 1
1
module github.com/ldej/go-acapy-client
2
2
3
- go 1.15
4
-
5
- require github.com/gorilla/mux v1.8.0 // indirect
3
+ go 1.16
Original file line number Diff line number Diff line change 1
- github.com/gorilla/mux v1.8.0 h1:i40aqfkR1h2SlN9hojwV5ZA91wcXFOvkdNIeFDP5koI =
2
- github.com/gorilla/mux v1.8.0 /go.mod h1:DVbg23sWSpFRCP0SfiEN6jmj59UnW/n46BH5rLB71So =
You can’t perform that action at this time.
0 commit comments