Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 312 Bytes

collaboration.md

File metadata and controls

17 lines (14 loc) · 312 Bytes

Collaboration Code Examples

Example API call in Angular 1.x

var objConfig={
  'url':
  "https://www.threatcrowd.org/searchApi/v2/ip/report/?ip="+strIp
};

$http(objConfig).then(
  function fnSuccess(objResponse){
  //do this with what's returned

},
  function fnError(objResponse){}
);