BF MEM API
Irena Bojanova, Inventor/Creator, PI & Lead, NIST Bugs Framework (BF), 2014 – ~~~
_
The BF _MEM API queries and generates the BF Taxonomy in graphical formats.
BF /_MEM Excerpt → no Key required:
https://samate.nist.gov/services/BF/BFTaxonomy/ppt/_MEMBF /_MEM Full → Key required:
https://samate.nist.gov/services/BF/BFTaxonomy/ppt/_MEM?key=<code>YOUR_KEY</code>Programatically → Key required:
C# - simplified
HttpClient client = new HttpClient() { BaseAddress = new Uri("https://samate.nist.gov/services/BF") }; //replace YOUR_USER_NAME and YOUR_KEY client.DefaultRequestHeaders.Add("user", YOUR_USER_NAME); client.DefaultRequestHeaders.Add("key", YOUR_KEY); var response = await BFClient.SendRequest("BFTaxonomy/ppt/_MEM/api", HttpMethod.Get); response.EnsureSuccessStatusCode(); var zipData = await response.Content.ReadAsStreamAsync();
Python //to be added//
BF CITATION: