Skip to content

Commit 389f844

Browse files
committed
Updated dependencies
1 parent 904111b commit 389f844

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
.classpath
2+
.project
3+
.settings
14
.DS_Store
25
build
36
**/build

build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ configure(allprojects) {
1717
sourceCompatibility=1.5
1818
targetCompatibility=1.5
1919

20-
springSocialVersion = '1.0.2.BUILD-SNAPSHOT'
21-
jacksonVersion = '1.9.3'
20+
springSocialVersion = '1.1.0.BUILD-SNAPSHOT'
21+
jacksonVersion = '1.9.6'
2222
jspApiVersion = '2.1'
2323
junitVersion = '4.10'
2424
mockitoVersion = '1.9.0'
2525
servletApiVersion = '2.5'
26-
springVersion = '3.1.0.RELEASE'
26+
springVersion = '3.1.1.RELEASE'
2727
springTestMvcVersion = "1.0.0.BUILD-SNAPSHOT"
2828

2929
[compileJava, compileTestJava]*.options*.compilerArgs = ['-Xlint:none']

spring-social-facebook/src/main/java/org/springframework/social/facebook/api/impl/OpenGraphTemplate.java

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ public OpenGraphTemplate(GraphApi graphApi, boolean isAuthorizedForUser) {
3232

3333
public String publishAction(String action, String objectType, String objectUrl) {
3434
requireAuthorization();
35+
requireApplicationNamespace();
3536
MultiValueMap<String, Object> parameters = new LinkedMultiValueMap<String, Object>();
3637
parameters.set(objectType, objectUrl);
3738
return graphApi.publish("me", graphApi.getApplicationNamespace() + ":" + action, parameters);

0 commit comments

Comments
 (0)