zoukankan      html  css  js  c++  java
  • webhook: requestbin

    A Runscope Community Project — Learn more.

    Bin URL

     


    Make a request to get started. After making a request, refresh this page to see it.

    cURL
    curl -X POST -d "fizz=buzz" http://requestb.in/y0qofsy0
    Python (with Requests)
    import requests, time
    r = requests.post('http://requestb.in/y0qofsy0', data={"ts":time.time()})
    print r.status_code
    print r.content
    Node.js (with request)
    var request = require('request');
    var url ='http://requestb.in/y0qofsy0'
    request(url, function (error, response, body) {
      if (!error) {
        console.log(body);
      }
    });
    Ruby
    require 'open-uri'
    result = open('http://requestb.in/y0qofsy0')
    result.lines { |f| f.each_line {|line| p line} }
    C# / .NET (4.5+)
    using System;
    using System.Net.Http;
    using System.Threading.Tasks;
    
    namespace RequestBinExample
    {
      class Program
      {
        static void Main(string[] args)
        {
          var task = MakeRequest();
          task.Wait();
    
          var response = task.Result;
          var body = response.Content.ReadAsStringAsync().Result;
          Console.WriteLine(body);
        }
    
        private static async Task<HttpResponseMessage> MakeRequest()
        {
          var httpClient = new HttpClient();
          return await httpClient.GetAsync(new Uri("http://requestb.in/y0qofsy0"));
        }
      }
    }
    Java
    import org.apache.commons.httpclient.*;
    import org.apache.commons.httpclient.methods.*;
    import org.apache.commons.httpclient.params.HttpMethodParams;
    
    import java.io.*;
    
    public class RequestBinTutorial {
      public static void main(String[] args) {
        HttpClient client = new HttpClient();
        GetMethod method = new GetMethod("http://requestb.in/y0qofsy0");
        try {
          int statusCode = client.executeMethod(method);
          byte[] responseBody = method.getResponseBody();
          System.out.println(new String(responseBody));
        } catch (Exception e) {
          System.err.println("Fatal error: " + e.getMessage());
          e.printStackTrace();
        } finally {
          method.releaseConnection();
        }
      }
    }
    PHP
    <?php
        $result = file_get_contents('http://requestb.in/y0qofsy0');
        echo $result;
    ?>

    Limits

    This bin will keep the last 20 requests made to it and remain available for 48 hours after it was created. However, data might be cleared at any time, so treat bins as highly ephemeral.

    Need more?

    Runscope request captures give you RequestBins with live updates, permanent URLs, file handling and much more. Sign up free.

  • 相关阅读:
    Java Jaxb JavaBean与XML互转
    中国版Azure支持那些版本号Linux
    Codeforces 8D Two Friends 三分+二分+计算几何
    技术走向管理一些思考(3)-知识工作者的管理
    分析USB平台设备模型框架(1)
    (42)JS运动之多物体框架--多个div变宽
    听写英语单词的小程序
    一个基于node express4.0和mongodb的活动报名
    c编程:求出4&#215;4矩阵中最大和最小元素值及其所在行下标和列下标,求出两条主对角线元素之和。
    重载()运算符和重载强制类型转换
  • 原文地址:https://www.cnblogs.com/alexyuyu/p/6358526.html
Copyright © 2011-2022 走看看