mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-17 21:34:56 +00:00
Commit from GitHub Actions (Publish APIs & Clients)
This commit is contained in:
4
examples/sunnah/collections/curl/listAvailableCollections.sh
Executable file
4
examples/sunnah/collections/curl/listAvailableCollections.sh
Executable file
@@ -0,0 +1,4 @@
|
||||
curl "https://api.m3o.com/v1/sunnah/Collections" \
|
||||
-H "Content-Type: application/json" \
|
||||
-H "Authorization: Bearer $MICRO_API_TOKEN" \
|
||||
-d '{}'
|
||||
15
examples/sunnah/collections/go/listAvailableCollections.go
Executable file
15
examples/sunnah/collections/go/listAvailableCollections.go
Executable file
@@ -0,0 +1,15 @@
|
||||
package example
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"github.com/micro/services/clients/go/sunnah"
|
||||
"os"
|
||||
)
|
||||
|
||||
// Get a list of available collections. A collection is
|
||||
// a compilation of hadiths collected and written by an author.
|
||||
func ListAvailableCollections() {
|
||||
sunnahService := sunnah.NewSunnahService(os.Getenv("MICRO_API_TOKEN"))
|
||||
rsp, err := sunnahService.Collections(&sunnah.CollectionsRequest{})
|
||||
fmt.Println(rsp, err)
|
||||
}
|
||||
11
examples/sunnah/collections/node/listAvailableCollections.js
Executable file
11
examples/sunnah/collections/node/listAvailableCollections.js
Executable file
@@ -0,0 +1,11 @@
|
||||
import * as sunnah from "m3o/sunnah";
|
||||
|
||||
// Get a list of available collections. A collection is
|
||||
// a compilation of hadiths collected and written by an author.
|
||||
async function ListAvailableCollections() {
|
||||
let sunnahService = new sunnah.SunnahService(process.env.MICRO_API_TOKEN);
|
||||
let rsp = await sunnahService.collections({});
|
||||
console.log(rsp);
|
||||
}
|
||||
|
||||
await ListAvailableCollections();
|
||||
Reference in New Issue
Block a user