Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Help with how cfhttpparam work.

Enthusiast ,
Jan 27, 2016 Jan 27, 2016

This is what it says on the API Basics | KnowledgeOwl site. But it seemed that for it to work, the full URL look something like this.

https://app.knowledgeowl.com/api/head/category/5697c6a632131cd740bd3123.json?_authbykey=56a7d8c51233...

So, this is my attempt in using cfhttpparam.

<cfhttp url="https://app.knowledgeowl.com/api/head/category/.json?" method="GET" >

  <cfhttpparam name="categoryID" value="c6a632131cd740bd3123">

  <cfhttpparam name="_authbykey" value="56a7d8c512331c4058361687">

  <cfhttpparam name="project_id" value="55c4ffd131231c527e294fe6">

</cfhttp>

Okay, so I got Error in custom script module error. Any suggestion is much appreciated.

463
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Engaged , Jan 27, 2016 Jan 27, 2016

The url in the CFHTTP tag shouldn't end in a "?".   Also, you need the type="url" on the pram tags.

Translate
Advocate ,
Jan 27, 2016 Jan 27, 2016

You are missing the type="URL" parameter. I'm not sure if there is a default type or not but that is where I would start.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Engaged ,
Jan 27, 2016 Jan 27, 2016

The url in the CFHTTP tag shouldn't end in a "?".   Also, you need the type="url" on the pram tags.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Enthusiast ,
Jan 27, 2016 Jan 27, 2016
LATEST

Thanks, guys! That works.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources