Last Updated: February 25, 2016
·
789
· dfinke

Use ‪PowerShell‬ to grab a ‪CoderWall‬ users profile

# Requires PowerShell v3
<#
    .Synopsis   
        Get-CoderWall uses the built-in PowerShell cmdlet 
        Invoke-RestMethod to retrieve and convert the JSON
        into PowerShell objects
#>
function Get-CoderWall ($user) { 
    Invoke-RestMethod http://coderwall.com/$user.json
}

Get-CoderWall dfinke