You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

15 lines
629 B

<?php
Route::get('/', 'HomeController@welcome');
Route::get('/signin', 'AuthController@signin');
Route::get('/callback', 'AuthController@callback');
Route::get('/signout', 'AuthController@signout');
Route::get('/calendar', 'CalendarController@calendar');
Route::get('/instagram', 'InstagramController@index');
Route::post('api/receiveCookie', 'BiCookiesController@receiveCookie');
Route::get('api/weibo/list', 'WeiboController@list');
Route::post('api/weibo/store', 'WeiboController@store');
Route::get('google/photo/connect', 'GooglePhotoController@connect');
Route::get('google/photo/index', 'GooglePhotoController@index');