Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 66 lines (53 sloc) 2.02 KB
#!/usr/bin/perl -w
#
# canvas_test_user.pl, DESCRIPTION
#
# Copyright (C) 2017 Tom Jordan
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# $Id:$
# Tom Jordan <tom.jordan@wisc.edu>
use vars qw/$VERSION $FILE/;
($VERSION) = q$Revision: 1.1 $ =~ /([\d.]+)/;
($FILE) = q$RCSfile: canvas_test_user.pl,v $ =~ /^[^:]+: ([^\$]+),v $/;
use strict;
use REST::Client;
use JSON;
use Data::Dumper;
my $canvas_url = "https://tier.instructure.com";
my $canvas_token = "10675~b1IIAPh31TCIBMRsmEqLUL436htu5Q7CP8JPMhRncRpKVh9uWYIDxbkCNWN7vSKD";
my $header;
$header->{'Authorization'} = "Bearer: $canvas_token";
$header->{'Content-type'} = "application/json";
my $client = REST::Client->new({
host => $canvas_url,
timeout => 10
});
# disable certificate checking
$client->getUseragent()->ssl_opts(verify_hostname => 0);
$client->getUseragent()->ssl_opts(SSL_verify_mode => "SSL_VERIFY_NONE");
my $user;
$user->{pseudonym}->{unique_id} = 'testuser1@example.edu';
$user->{pseudonym}->{unique_login} = 'testuser1@example.edu';
$user->{user}->{name} = 'Test User1';
$user->{pseudonym}->{sis_user_id} = 1;
$user->{pseudonym}->{password} = 'password';
$user->{user}->{skip_registration} = 'true';
my $json_user = to_json($user);
print Dumper $json_user;
print "About to call...\n";
#$client->POST("/api/v1/accounts/1/users?access_token=$canvas_token",[$json_user]);
$client->POST("/api/v1/accounts/1/users?access_token=$canvas_token",$json_user,$header);
print "after call...\n";
print Dumper $client->responseContent();
my $response = from_json($client->responseContent());
print Dumper $response;