3
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

EC-CUBE3のTips

Posted at

#開発環境インストール
http://qiita.com/akinrt/items/1a136f90186fcc5ac222

  • vagrant

#API作成
公式ドキュメントによる指針
http://ec-cube.github.io/api.html

Controllerにて

return $app->json(array('hoge'=>'fuga'), 200);

などでjsonを返せる

$app->jsonメソッドはSilexにて実装されている。

#Symfony2とEccube3ってどこが違うのか?

Symfony2 demoのsrc/AppBundleにBundleがある。
それらにその他バンドルのフォルダを追加したものがsrc/Eccube

比較
##symfony2 demo

##Eccube3

#プラグイン、機能追加は?
http://qiita.com/chihiro-adachi/items/6318642120f67faedf0b

独自サイトのためにイジる時

  1. Eccubeフォルダ内をいじる

  2. pluginの形で作る(配布可能になる)

#SNS認証機能は?

node.js
php(symfony)

などの例がある

エンドポイント(twitterの場合)
https://dev.twitter.com/oauth/3-legged

POST oauth2 / token
GET oauth/authorize

3
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?