ColdFusion cfhttp.filecontent

259 Views Asked by At

I recently started learning coldfusion. I am getting a bit confused, reading through numerous websites regarding the function cfhttp.filecontent.

Can any of you help me understand and provide me with an example of how I would format the following code I am writing? I am already grabbing name and email from a form on the index page and trying to initiate an API request and get the password back, formatted correctly.

<cfset passwordcomplexity = 4>
<cfinclude template='header.cfm'>
    
    <cfhttp method="GET" url="https://hardest.pw/api/#passwordlenght#/#passwordcomplexity#">

    <cfset returnString = cfhttp.filecontent>
            
    <cfdump var="#returnString#">
        
    <!---<cfmail to="#form.email#"
    from="[email protected]"
    subject="New random password"
    type="text">
    Hey there, #form.name#!

    We've just generated a new password for you! You can see it below:
        
        
</cfmail>--->
<cfinclude template='footer.cfm'>

At the end I just get something like this:

{"code":200,"desc":"Command completed successfully","password":"[&Vo4%T#l8","hardestlink":"https:\/\/hardest.pw\/0758828a-a6f6-4f9b-9bd7-c0dc778de0b7"}
0

There are 0 best solutions below