app实习僧怎样把简历设置成原单位不可见

实习僧真是的,面试完了然后再标个不合适_实习吧_百度贴吧
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&签到排名:今日本吧第个签到,本吧因你更精彩,明天继续来努力!
本吧签到人数:0成为超级会员,使用一键签到本月漏签0次!成为超级会员,赠送8张补签卡连续签到:天&&累计签到:天超级会员单次开通12个月以上,赠送连续签到卡3张
关注:65,453贴子:
实习僧真是的,面试完了然后再标个不合适收藏
卧室装修,推荐这些床,舒适透气,还有折扣!
本来感觉面试官对我很满意,都建议我以后怎么做公交来公司。结果再一看实习僧发现简历反馈为不合适
应聘什么岗位啊
实习盖章可以找我,我公司帮忙盖章
登录百度帐号推荐应用
为兴趣而生,贴吧更懂你。或实习僧开放平台 v1.0 版上线,提供通用接口
实习僧开放平台 v2.0 版上线,提供完整的简历操作投递等接口
Python Demo
Python 2.7x/3.x demo代码
#!/usr/bin/env python
#-*- coding: utf-8 -*-
# +----------------------------------------------------------------------
# | Copyright (c)
All rights reserved.
# +----------------------------------------------------------------------
# | Author: Evan
# +----------------------------------------------------------------------
# | Version: v1.0
# +----------------------------------------------------------------------
import base64
import json
import time
import hashlib
import urllib2
from urllib import urlencode
app_id = 'your app id'
app_secret = 'your app secret'
timestamp =
str(int(time.time()))
#业务接口url
call_api = '/getinterns'
api_url = ""
signature = app_id + app_secret + timestamp
sign = hashlib.md5(signature).hexdigest().upper()
params = dict(
sign = sign,
keyword = 'php'
params_str = urlencode(params)
call_url = api_url + call_api + '?' + params_str
auth_raw = app_id + ":" + timestamp
auth = base64.standard_b64encode(auth_raw)
req = urllib2.Request(call_url)
#设置http头
req.add_header("Accept", "text/html")
req.add_header("Content-Type", "application/x-www-form- charset=UTF-8")
req.add_header("Authorization", auth)
res = urllib2.urlopen(req)
data = res.read()
res.close()
data_rv = json.loads(data)
print data_rv
PHP demo代码
+----------------------------------------------------------------------
| Copyright (c)
All rights reserved.
+----------------------------------------------------------------------
| Author: whitney
+----------------------------------------------------------------------
| Version: v1.0
+----------------------------------------------------------------------
$app_id = 'your app id';
$app_secret = 'your app secret';
$timestamp = time();
//Base url
$api_url = "";
//业务接口url
$call_api = '/getinterns';
$signature = md5($app_id.$app_secret.$timestamp);
//生成签名
$sign = strtoupper($signature);
//接口参数
$params = array(
"sign" => $sign,
"keyword" => "php",
$params_str = http_build_query($params);
$call_url = $api_url.$call_api.'?'.$params_
$auth_raw = $app_id.":".$
$auth = base64_encode($auth_raw);
$options = array(
'http' => array(
'method' => 'GET',
'header' =>
"Accept:text/html\r\n".
"Content-type: application/x-www-form- charset=UTF-8\r\n" .
"Authorization:$auth\r\n",
'content' => $params_str
$res = file_get_contents($call_url, false, stream_context_create($options));
//获取结果
print_r($res);
Demo源码下载
Python Demo 源码
PHP Demo 源码}

我要回帖

更多推荐

版权声明:文章内容来源于网络,版权归原作者所有,如有侵权请点击这里与我们联系,我们将及时删除。

点击添加站长微信