Advertisement
martinT

cfhttp

Jul 4th, 2013
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Works like a charm, thanks.
  2.  
  3. I'm trying to use this to interact with a fusion table.
  4.  
  5. Does anyone know why this works:
  6. <cfhttp
  7.    method="GET"
  8.    url="https://www.googleapis.com/fusiontables/v1/query?access_token=#myToken#&sql=#qry#">
  9.  </cfhttp>
  10.  
  11. and this doesn't:
  12. <cfhttp
  13.    method="GET"
  14.    url="https://www.googleapis.com/fusiontables/v1/query">
  15.     <cfhttpparam type="URL" name="access_token" value="#myToken#">
  16.     <cfhttpparam type="URl" name="sql" value="#qry#">
  17.  </cfhttp>
  18.  
  19. I need to use the post method and the second option won't authorize me...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement