Help for this page

Select Code to Download


  1. or download this
    #! /usr/bin/bash
    
    ...
        -H "Content-Type: application/json" \
        https://graph.microsoft.com/v1.0/groups \
        | jq .
    
  2. or download this
    #! /usr/bin/perl -W
    
    ...
        my $groups = fetch($$token_request{'access_token'}, $url);
        print Dumper $groups;
    }